From 8a5bb8822e354b4455e5239259b60ace74648654 Mon Sep 17 00:00:00 2001 From: Andrea Angiolillo Date: Tue, 26 Aug 2025 10:33:11 +0100 Subject: [PATCH 1/2] Add -i to curl examples in the OpenAPI --- .../internal/openapi/filter/code_sample.go | 4 +- .../openapi/filter/code_sample_test.go | 16 +- .../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 ++++++++--------- tools/cli/test/e2e/cli/output/.gitkeep | 0 17 files changed, 10462 insertions(+), 10462 deletions(-) delete mode 100644 tools/cli/test/e2e/cli/output/.gitkeep diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index 358bd257d0..89de7c759a 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -77,7 +77,7 @@ func getFileExtension(format string) string { func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMethod, format string) codeSample { version := apiVersion(f.metadata.targetVersion) - source := "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + + source := "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+" + format + "\" \\\n " switch opMethod { @@ -107,7 +107,7 @@ func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMeth func (f *CodeSampleFilter) newServiceAccountCurlCodeSamplesForOperation(pathName, opMethod, format string) codeSample { version := apiVersion(f.metadata.targetVersion) - source := "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + + source := "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+" + format + "\" \\\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 2485999573..8849a2be09 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -104,13 +104,13 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Service Accounts)", - Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + + Source: "curl --include --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 --include --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\"", }, }, @@ -175,13 +175,13 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Service Accounts)", - Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + + Source: "curl --include --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 --include --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\"", }, }, @@ -246,13 +246,13 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Service Accounts)", - Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + + Source: "curl --include --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 --include --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\"", }, }, @@ -335,14 +335,14 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Service Accounts)", - Source: "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + + Source: "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n " + "-X GET \"https://cloud.mongodb.com/test\" \\\n --output \"file_name.gz\"", }, { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + + Source: "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n " + "-X GET \"https://cloud.mongodb.com/test\" \\\n --output \"file_name.gz\"", }, 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 982f648424..8c5f93c8c9 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 @@ -34444,12 +34444,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -34511,12 +34511,12 @@ { "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/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -34584,12 +34584,12 @@ { "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/clusters?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -34657,12 +34657,12 @@ { "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/eventTypes?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -34721,12 +34721,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -34797,12 +34797,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -34880,12 +34880,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -34961,12 +34961,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -35053,12 +35053,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -35126,12 +35126,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -35208,12 +35208,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -35291,12 +35291,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -35375,12 +35375,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -35470,12 +35470,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -35578,12 +35578,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35662,12 +35662,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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" @@ -35753,12 +35753,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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" @@ -35824,12 +35824,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35900,12 +35900,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] }, @@ -35996,12 +35996,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 '{ }'" } ] } @@ -36080,12 +36080,12 @@ { "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/byName/{groupName}?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] } @@ -36150,12 +36150,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -36218,12 +36218,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -36303,12 +36303,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -36383,12 +36383,12 @@ { "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}/accessList?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -36481,12 +36481,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36566,12 +36566,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -36652,12 +36652,12 @@ { "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}/accessList/{entryValue}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -36739,12 +36739,12 @@ { "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}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -36815,12 +36815,12 @@ { "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}/alertConfigs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -36894,12 +36894,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36974,12 +36974,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -37055,12 +37055,12 @@ { "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}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37147,12 +37147,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -37242,12 +37242,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -37334,12 +37334,12 @@ { "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}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37426,12 +37426,12 @@ { "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}/alerts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37508,12 +37508,12 @@ { "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}/alerts/{alertId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37603,12 +37603,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -37695,12 +37695,12 @@ { "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}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37775,12 +37775,12 @@ { "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}/apiKeys?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37851,12 +37851,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37937,12 +37937,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -38037,12 +38037,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -38128,12 +38128,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38195,12 +38195,12 @@ { "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}/auditLog?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38274,12 +38274,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -38341,12 +38341,12 @@ { "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}/awsCustomDNS?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38417,12 +38417,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -38494,12 +38494,12 @@ { "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}/backup/exportBuckets?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -38580,12 +38580,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -38664,12 +38664,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -38743,12 +38743,12 @@ { "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}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -38815,12 +38815,12 @@ { "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}/backupCompliancePolicy?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -38910,12 +38910,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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" @@ -38978,12 +38978,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39058,12 +39058,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39149,12 +39149,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -39228,12 +39228,12 @@ { "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/{roleId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39326,12 +39326,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -39412,12 +39412,12 @@ { "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}/clusters?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -39502,12 +39502,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -39598,12 +39598,12 @@ { "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}/clusters/provider/regions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -39688,12 +39688,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39778,12 +39778,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39872,12 +39872,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -39957,12 +39957,12 @@ { "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}/clusters/{clusterName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -40056,12 +40056,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -40145,12 +40145,12 @@ { "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}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -40239,12 +40239,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40324,12 +40324,12 @@ { "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}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -40412,12 +40412,12 @@ { "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}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -40509,12 +40509,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40603,12 +40603,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -40692,12 +40692,12 @@ { "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}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -40772,12 +40772,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -40851,12 +40851,12 @@ { "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}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -40944,12 +40944,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -41036,12 +41036,12 @@ { "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}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -41127,12 +41127,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41218,12 +41218,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41310,12 +41310,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -41392,12 +41392,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -41486,12 +41486,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41578,12 +41578,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -41681,12 +41681,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -41783,12 +41783,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41882,12 +41882,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41964,12 +41964,12 @@ { "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}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42058,12 +42058,12 @@ { "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}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42140,12 +42140,12 @@ { "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}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42234,12 +42234,12 @@ { "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}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42323,12 +42323,12 @@ { "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}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42421,12 +42421,12 @@ { "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}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42522,12 +42522,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -42628,12 +42628,12 @@ { "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}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -42728,12 +42728,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -42823,12 +42823,12 @@ { "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}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -42935,12 +42935,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -43020,12 +43020,12 @@ { "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}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -43105,12 +43105,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -43202,12 +43202,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -43306,12 +43306,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -43406,12 +43406,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -43592,12 +43592,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43684,12 +43684,12 @@ { "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}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -43785,12 +43785,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43904,12 +43904,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -44002,12 +44002,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -44101,12 +44101,12 @@ { "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}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -44214,12 +44214,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -44303,12 +44303,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -44390,12 +44390,12 @@ { "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}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -44485,12 +44485,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44572,12 +44572,12 @@ { "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}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -44673,12 +44673,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -44751,12 +44751,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -44855,12 +44855,12 @@ { "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}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -44947,12 +44947,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45042,12 +45042,12 @@ { "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}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -45125,12 +45125,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45207,12 +45207,12 @@ { "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}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -45303,12 +45303,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -45399,12 +45399,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -45480,12 +45480,12 @@ { "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}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -45569,12 +45569,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -45672,12 +45672,12 @@ { "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}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -45767,12 +45767,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -45857,12 +45857,12 @@ { "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}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -45958,12 +45958,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -46037,12 +46037,12 @@ { "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}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -46165,12 +46165,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ], "x-sunset": "2025-06-01" @@ -46260,12 +46260,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46348,12 +46348,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46424,12 +46424,12 @@ { "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/all?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -46513,12 +46513,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -46591,12 +46591,12 @@ { "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/{containerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46692,12 +46692,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -46762,12 +46762,12 @@ { "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}/customDBRoles/roles?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46850,12 +46850,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46932,12 +46932,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47009,12 +47009,12 @@ { "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}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47106,12 +47106,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -47189,12 +47189,12 @@ { "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}/dataFederation?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47274,12 +47274,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47350,12 +47350,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47427,12 +47427,12 @@ { "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}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47524,12 +47524,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -47606,12 +47606,12 @@ { "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}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -47694,12 +47694,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47783,12 +47783,12 @@ { "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}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47886,12 +47886,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -47992,12 +47992,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -48068,12 +48068,12 @@ { "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}/databaseUsers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48308,12 +48308,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48400,12 +48400,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -48487,12 +48487,12 @@ { "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}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48594,12 +48594,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -48682,12 +48682,12 @@ { "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}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48784,12 +48784,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48917,12 +48917,12 @@ { "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}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49047,12 +49047,12 @@ { "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}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49114,12 +49114,12 @@ { "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}/encryptionAtRest?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49199,12 +49199,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -49278,12 +49278,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49366,12 +49366,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49468,12 +49468,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49557,12 +49557,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49700,12 +49700,12 @@ { "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}/events?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49791,12 +49791,12 @@ { "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}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49861,12 +49861,12 @@ { "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}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49977,12 +49977,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50096,12 +50096,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50207,12 +50207,12 @@ { "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}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50289,12 +50289,12 @@ { "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}/integrations?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50384,12 +50384,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -50477,12 +50477,12 @@ { "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}/integrations/{integrationType}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50593,12 +50593,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -50706,12 +50706,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -50786,12 +50786,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -50870,12 +50870,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -50948,12 +50948,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -51026,12 +51026,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -51108,12 +51108,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ], "x-sunset": "2024-10-04" @@ -51201,12 +51201,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -51272,12 +51272,12 @@ { "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}/ipAddresses?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51351,12 +51351,12 @@ { "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}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51448,12 +51448,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51546,12 +51546,12 @@ { "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}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51655,12 +51655,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -51745,12 +51745,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -51836,12 +51836,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -51923,12 +51923,12 @@ { "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}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51999,12 +51999,12 @@ { "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}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52075,12 +52075,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -52139,12 +52139,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52204,12 +52204,12 @@ { "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}/maintenanceWindow?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52280,12 +52280,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -52344,12 +52344,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52408,12 +52408,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52475,12 +52475,12 @@ { "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}/managedSlowMs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52542,12 +52542,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52609,12 +52609,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52737,12 +52737,12 @@ { "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}/mongoDBVersions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52830,12 +52830,12 @@ { "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}/peers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52919,12 +52919,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53001,12 +53001,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -53081,12 +53081,12 @@ { "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}/peers/{peerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53178,12 +53178,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -53248,12 +53248,12 @@ { "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}/pipelines?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53327,12 +53327,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53406,12 +53406,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -53486,12 +53486,12 @@ { "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}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53580,12 +53580,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -53665,12 +53665,12 @@ { "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}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53766,12 +53766,12 @@ { "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}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53848,12 +53848,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53930,12 +53930,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54031,12 +54031,12 @@ { "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}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54126,12 +54126,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54219,12 +54219,12 @@ { "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}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54312,12 +54312,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54394,12 +54394,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54464,12 +54464,12 @@ { "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}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54543,12 +54543,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -54624,12 +54624,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54715,12 +54715,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54805,12 +54805,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54893,12 +54893,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54992,12 +54992,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -55077,12 +55077,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55171,12 +55171,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55266,12 +55266,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55380,12 +55380,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55484,12 +55484,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55589,12 +55589,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55661,12 +55661,12 @@ { "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}/privateIpMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55745,12 +55745,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -55827,12 +55827,12 @@ { "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}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55906,12 +55906,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55988,12 +55988,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56071,12 +56071,12 @@ { "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}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56147,12 +56147,12 @@ { "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}/processes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56225,12 +56225,12 @@ { "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}/processes/{processId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56312,12 +56312,12 @@ { "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}/processes/{processId}/databases?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56399,12 +56399,12 @@ { "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}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56525,12 +56525,12 @@ { "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}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56612,12 +56612,12 @@ { "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}/processes/{processId}/disks?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56696,12 +56696,12 @@ { "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}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56831,12 +56831,12 @@ { "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}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57073,12 +57073,12 @@ { "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}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57169,12 +57169,12 @@ { "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}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57289,12 +57289,12 @@ { "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}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57425,12 +57425,12 @@ { "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}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57498,12 +57498,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57569,12 +57569,12 @@ { "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}/pushBasedLogExport?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57652,12 +57652,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -57735,12 +57735,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57817,12 +57817,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57893,12 +57893,12 @@ { "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}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57969,12 +57969,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58051,12 +58051,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58142,12 +58142,12 @@ { "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/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58239,12 +58239,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58333,12 +58333,12 @@ { "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/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58424,12 +58424,12 @@ { "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/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58516,12 +58516,12 @@ { "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/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58595,12 +58595,12 @@ { "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/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58678,12 +58678,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58763,12 +58763,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58846,12 +58846,12 @@ { "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/{name}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58937,12 +58937,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -59010,12 +59010,12 @@ { "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}/settings?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59092,12 +59092,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -59177,12 +59177,12 @@ { "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}/teams?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59269,12 +59269,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59355,12 +59355,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59456,12 +59456,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -59523,12 +59523,12 @@ { "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}/userSecurity?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59602,12 +59602,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -59666,12 +59666,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59733,12 +59733,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59814,12 +59814,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59893,12 +59893,12 @@ { "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}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59987,12 +59987,12 @@ { "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}/users?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60069,12 +60069,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -60165,12 +60165,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -60255,12 +60255,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -60340,12 +60340,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -60416,12 +60416,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -60490,12 +60490,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -60575,12 +60575,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -60655,12 +60655,12 @@ { "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}/apiKeys?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -60735,12 +60735,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -60818,12 +60818,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -60899,12 +60899,12 @@ { "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}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -60994,12 +60994,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -61086,12 +61086,12 @@ { "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}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -61192,12 +61192,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -61292,12 +61292,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -61387,12 +61387,12 @@ { "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}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -61465,12 +61465,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -61556,12 +61556,12 @@ { "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}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -61671,12 +61671,12 @@ { "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}/events?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -61762,12 +61762,12 @@ { "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}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -61835,12 +61835,12 @@ { "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}/federationSettings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -61925,12 +61925,12 @@ { "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}/groups?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -62010,12 +62010,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -62092,12 +62092,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] }, @@ -62174,12 +62174,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -62256,12 +62256,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -62336,12 +62336,12 @@ { "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -62430,12 +62430,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -62588,12 +62588,12 @@ { "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}/invoices?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -62658,12 +62658,12 @@ { "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}/invoices/pending?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -62746,12 +62746,12 @@ { "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}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -62827,12 +62827,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-01-01+csv\" \\\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+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -62900,12 +62900,12 @@ { "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}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -62967,12 +62967,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63046,12 +63046,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -63119,12 +63119,12 @@ { "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}/settings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63201,12 +63201,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -63287,12 +63287,12 @@ { "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}/teams?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63376,12 +63376,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -63462,12 +63462,12 @@ { "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}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -63551,12 +63551,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -63638,12 +63638,12 @@ { "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}/teams/{teamId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63739,12 +63739,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -63837,12 +63837,12 @@ { "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}/teams/{teamId}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63941,12 +63941,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -64039,12 +64039,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -64121,12 +64121,12 @@ { "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}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64206,12 +64206,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -64302,12 +64302,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -64380,12 +64380,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -64457,12 +64457,12 @@ { "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/users/byName/{userName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64536,12 +64536,12 @@ { "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/users/{userId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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 583da48bf3..a11ed2426a 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 @@ -28326,13 +28326,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28396,13 +28396,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28467,13 +28467,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28538,13 +28538,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28607,13 +28607,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -28681,13 +28681,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28763,13 +28763,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -28844,13 +28844,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28932,7 +28932,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -28940,7 +28940,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29009,13 +29009,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29088,7 +29088,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -29096,7 +29096,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29173,13 +29173,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -29255,13 +29255,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29344,7 +29344,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -29352,7 +29352,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29444,13 +29444,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29526,13 +29526,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29616,7 +29616,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -29624,7 +29624,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29693,13 +29693,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29766,13 +29766,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -29856,7 +29856,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -29864,7 +29864,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -29931,13 +29931,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30001,13 +30001,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30082,7 +30082,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30090,7 +30090,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30161,13 +30161,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30248,7 +30248,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30256,7 +30256,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30339,13 +30339,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30422,13 +30422,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30505,13 +30505,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30580,13 +30580,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30660,7 +30660,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30668,7 +30668,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -30746,13 +30746,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30829,13 +30829,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30921,7 +30921,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30929,7 +30929,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31019,7 +31019,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31027,7 +31027,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31110,13 +31110,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31196,13 +31196,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31279,13 +31279,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31371,7 +31371,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31379,7 +31379,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31462,13 +31462,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31537,13 +31537,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31612,7 +31612,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31620,7 +31620,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31699,13 +31699,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31788,7 +31788,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31796,7 +31796,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31878,7 +31878,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31886,7 +31886,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -31951,13 +31951,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32028,7 +32028,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32036,7 +32036,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32101,13 +32101,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32176,7 +32176,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32184,7 +32184,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32253,13 +32253,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32336,7 +32336,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32344,7 +32344,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32423,13 +32423,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32503,13 +32503,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32576,13 +32576,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32665,7 +32665,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32673,7 +32673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32739,13 +32739,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32817,7 +32817,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32825,7 +32825,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -32907,13 +32907,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32985,13 +32985,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33076,7 +33076,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33084,7 +33084,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33159,13 +33159,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33244,7 +33244,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33252,7 +33252,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33337,13 +33337,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33420,13 +33420,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33512,7 +33512,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33520,7 +33520,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33598,13 +33598,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33687,7 +33687,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33695,7 +33695,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -33774,13 +33774,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33855,13 +33855,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33948,7 +33948,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33956,7 +33956,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34041,13 +34041,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34127,13 +34127,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34207,13 +34207,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -34286,13 +34286,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34377,7 +34377,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34385,7 +34385,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34465,13 +34465,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34554,7 +34554,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34562,7 +34562,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34647,13 +34647,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34735,13 +34735,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34830,7 +34830,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -34838,7 +34838,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -34921,13 +34921,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35009,13 +35009,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35089,13 +35089,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35182,7 +35182,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35190,7 +35190,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35277,7 +35277,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35285,7 +35285,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35361,13 +35361,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35450,13 +35450,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35530,13 +35530,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35619,13 +35619,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35701,13 +35701,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35793,13 +35793,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35886,7 +35886,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35894,7 +35894,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -35987,13 +35987,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36081,13 +36081,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36172,13 +36172,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36274,7 +36274,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -36282,7 +36282,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36361,13 +36361,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36444,13 +36444,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -36535,7 +36535,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36543,7 +36543,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36634,13 +36634,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -36727,7 +36727,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36735,7 +36735,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36885,7 +36885,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36893,7 +36893,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -36973,13 +36973,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37066,7 +37066,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37074,7 +37074,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37162,13 +37162,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37255,13 +37255,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37357,7 +37357,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -37365,7 +37365,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37469,14 +37469,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ @@ -37556,13 +37556,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -37640,13 +37640,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37729,7 +37729,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37737,7 +37737,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37817,13 +37817,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37911,7 +37911,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37919,7 +37919,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -37993,7 +37993,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38001,7 +38001,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -38093,13 +38093,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38180,7 +38180,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38188,7 +38188,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -38277,13 +38277,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38358,13 +38358,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -38439,13 +38439,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38529,7 +38529,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38537,7 +38537,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -38623,7 +38623,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38631,7 +38631,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -38710,13 +38710,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38798,7 +38798,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38806,7 +38806,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -38894,13 +38894,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38984,13 +38984,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39071,13 +39071,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39165,7 +39165,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -39173,7 +39173,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39247,13 +39247,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39361,14 +39361,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ @@ -39448,13 +39448,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39532,7 +39532,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39540,7 +39540,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39620,7 +39620,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39628,7 +39628,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39709,13 +39709,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39792,7 +39792,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39800,7 +39800,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -39881,13 +39881,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39959,13 +39959,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40052,7 +40052,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40060,7 +40060,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40128,13 +40128,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40199,13 +40199,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40282,7 +40282,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40290,7 +40290,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40365,13 +40365,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -40441,13 +40441,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40530,7 +40530,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40538,7 +40538,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40614,13 +40614,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40695,7 +40695,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40703,7 +40703,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -40774,13 +40774,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -40851,13 +40851,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40940,7 +40940,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40948,7 +40948,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41023,13 +41023,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41116,13 +41116,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41209,13 +41209,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41312,7 +41312,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41320,7 +41320,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41415,14 +41415,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ @@ -41489,13 +41489,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41663,7 +41663,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41671,7 +41671,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -41766,13 +41766,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41862,13 +41862,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41971,7 +41971,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41979,7 +41979,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42055,13 +42055,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42153,7 +42153,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42161,7 +42161,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42272,13 +42272,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42384,13 +42384,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42456,13 +42456,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42549,7 +42549,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42557,7 +42557,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42630,13 +42630,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42713,7 +42713,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42721,7 +42721,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -42810,13 +42810,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42895,13 +42895,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43021,13 +43021,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43110,13 +43110,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43181,13 +43181,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43282,13 +43282,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43382,13 +43382,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43481,13 +43481,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43557,13 +43557,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43648,13 +43648,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -43738,13 +43738,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43840,7 +43840,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -43848,7 +43848,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -43944,7 +43944,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -43952,7 +43952,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44026,13 +44026,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44107,7 +44107,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44115,7 +44115,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44188,7 +44188,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44196,7 +44196,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44271,13 +44271,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44352,13 +44352,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44441,7 +44441,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44449,7 +44449,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -44517,13 +44517,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44594,13 +44594,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44703,13 +44703,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44813,13 +44813,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44933,7 +44933,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44941,7 +44941,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45029,7 +45029,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45037,7 +45037,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45108,13 +45108,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45182,7 +45182,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45190,7 +45190,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45271,7 +45271,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45279,7 +45279,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45360,13 +45360,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45428,13 +45428,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -45496,13 +45496,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45572,7 +45572,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45580,7 +45580,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45644,7 +45644,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45652,7 +45652,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45716,7 +45716,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45724,7 +45724,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -45789,13 +45789,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45858,13 +45858,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -45927,7 +45927,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45935,7 +45935,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46041,13 +46041,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46125,13 +46125,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46209,7 +46209,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46217,7 +46217,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46293,13 +46293,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46372,13 +46372,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46462,7 +46462,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46470,7 +46470,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46538,13 +46538,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46616,7 +46616,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46624,7 +46624,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46699,13 +46699,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46778,13 +46778,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46867,7 +46867,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46875,7 +46875,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -46953,13 +46953,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47043,13 +47043,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47123,7 +47123,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47131,7 +47131,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47207,7 +47207,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47215,7 +47215,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47301,13 +47301,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47391,13 +47391,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47480,13 +47480,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47567,7 +47567,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47575,7 +47575,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -47653,13 +47653,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47742,13 +47742,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47832,13 +47832,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47934,7 +47934,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47942,7 +47942,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48034,13 +48034,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48131,13 +48131,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48210,7 +48210,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48218,7 +48218,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48285,13 +48285,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48362,7 +48362,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48370,7 +48370,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48446,13 +48446,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48536,7 +48536,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48544,7 +48544,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48627,13 +48627,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48713,13 +48713,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48806,7 +48806,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48814,7 +48814,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -48883,13 +48883,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48964,7 +48964,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48972,7 +48972,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -49044,13 +49044,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49140,7 +49140,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49148,7 +49148,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -49224,13 +49224,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -49305,13 +49305,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49377,13 +49377,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49454,13 +49454,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49534,13 +49534,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49617,13 +49617,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49726,13 +49726,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49806,13 +49806,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49888,13 +49888,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50013,13 +50013,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50249,13 +50249,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50346,13 +50346,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50460,13 +50460,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50581,13 +50581,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50654,13 +50654,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -50726,13 +50726,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50806,7 +50806,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50814,7 +50814,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -50890,7 +50890,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50898,7 +50898,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -50975,7 +50975,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -50983,7 +50983,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -51056,13 +51056,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51128,13 +51128,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51207,7 +51207,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51215,7 +51215,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -51294,13 +51294,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51384,7 +51384,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51392,7 +51392,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -51477,13 +51477,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51560,13 +51560,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51649,13 +51649,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51727,13 +51727,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51809,7 +51809,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51817,7 +51817,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -51895,13 +51895,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51976,13 +51976,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52062,7 +52062,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -52070,7 +52070,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -52139,13 +52139,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52218,7 +52218,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52226,7 +52226,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -52300,13 +52300,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52386,7 +52386,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52394,7 +52394,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -52474,13 +52474,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52567,7 +52567,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -52575,7 +52575,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -52640,13 +52640,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52720,7 +52720,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52728,7 +52728,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -52795,13 +52795,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -52864,13 +52864,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -52942,7 +52942,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52950,7 +52950,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -53024,13 +53024,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53108,13 +53108,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53188,13 +53188,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53277,7 +53277,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53285,7 +53285,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -53363,13 +53363,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -53445,13 +53445,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -53527,7 +53527,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53535,7 +53535,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -53612,13 +53612,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53686,13 +53686,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -53767,7 +53767,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53775,7 +53775,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -53846,13 +53846,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -53924,7 +53924,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53932,7 +53932,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -54009,13 +54009,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -54089,13 +54089,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54178,7 +54178,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -54186,7 +54186,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -54266,13 +54266,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54359,7 +54359,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54367,7 +54367,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -54456,13 +54456,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -54546,13 +54546,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54623,7 +54623,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54631,7 +54631,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -54714,13 +54714,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54818,13 +54818,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54907,13 +54907,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54980,13 +54980,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55069,13 +55069,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55150,13 +55150,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55229,7 +55229,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55237,7 +55237,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -55312,7 +55312,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55320,7 +55320,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -55395,13 +55395,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55475,13 +55475,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55563,7 +55563,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55571,7 +55571,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -55700,13 +55700,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55786,13 +55786,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55873,13 +55873,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-01-01+csv" \ -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 --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -55944,13 +55944,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56017,13 +56017,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56087,13 +56087,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56164,7 +56164,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56172,7 +56172,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -56241,13 +56241,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56320,7 +56320,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56328,7 +56328,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -56403,13 +56403,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56487,7 +56487,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56495,7 +56495,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -56576,13 +56576,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56660,13 +56660,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56753,7 +56753,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56761,7 +56761,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -56846,13 +56846,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56941,7 +56941,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56949,7 +56949,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -57037,13 +57037,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57119,13 +57119,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57195,13 +57195,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57278,13 +57278,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57367,7 +57367,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57375,7 +57375,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -57453,7 +57453,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57461,7 +57461,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ @@ -57536,13 +57536,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57613,13 +57613,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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 acace6e979..a042f2a650 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 @@ -34889,12 +34889,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -34956,12 +34956,12 @@ { "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/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35029,12 +35029,12 @@ { "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/clusters?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35102,12 +35102,12 @@ { "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/eventTypes?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35166,12 +35166,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -35242,12 +35242,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35325,12 +35325,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -35406,12 +35406,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -35498,12 +35498,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -35571,12 +35571,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -35653,12 +35653,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -35736,12 +35736,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -35820,12 +35820,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -35915,12 +35915,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -36023,12 +36023,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36107,12 +36107,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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" @@ -36198,12 +36198,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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" @@ -36269,12 +36269,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36345,12 +36345,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] }, @@ -36441,12 +36441,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 '{ }'" } ] } @@ -36525,12 +36525,12 @@ { "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/byName/{groupName}?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] } @@ -36595,12 +36595,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -36663,12 +36663,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -36748,12 +36748,12 @@ { "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}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -36834,12 +36834,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36914,12 +36914,12 @@ { "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}/accessList?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37012,12 +37012,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37097,12 +37097,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -37183,12 +37183,12 @@ { "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}/accessList/{entryValue}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37270,12 +37270,12 @@ { "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}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37346,12 +37346,12 @@ { "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}/alertConfigs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37425,12 +37425,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37505,12 +37505,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -37586,12 +37586,12 @@ { "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}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37678,12 +37678,12 @@ { "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}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -37773,12 +37773,12 @@ { "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}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -37865,12 +37865,12 @@ { "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}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37957,12 +37957,12 @@ { "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}/alerts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -38039,12 +38039,12 @@ { "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}/alerts/{alertId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38134,12 +38134,12 @@ { "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}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -38226,12 +38226,12 @@ { "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}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -38306,12 +38306,12 @@ { "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}/apiKeys?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38382,12 +38382,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38468,12 +38468,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -38568,12 +38568,12 @@ { "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}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -38659,12 +38659,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38726,12 +38726,12 @@ { "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}/auditLog?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38805,12 +38805,12 @@ { "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}/auditLog\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -38872,12 +38872,12 @@ { "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}/awsCustomDNS?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38948,12 +38948,12 @@ { "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}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -39025,12 +39025,12 @@ { "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}/backup/exportBuckets?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -39111,12 +39111,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -39195,12 +39195,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39274,12 +39274,12 @@ { "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}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -39346,12 +39346,12 @@ { "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}/backupCompliancePolicy?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -39441,12 +39441,12 @@ { "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}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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" @@ -39509,12 +39509,12 @@ { "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}/cloudProviderAccess?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39589,12 +39589,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39680,12 +39680,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -39759,12 +39759,12 @@ { "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}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39857,12 +39857,12 @@ { "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}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -39943,12 +39943,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -40033,12 +40033,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -40129,12 +40129,12 @@ { "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/provider/regions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -40219,12 +40219,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40309,12 +40309,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40402,12 +40402,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -40486,12 +40486,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ], "x-sunset": "2026-03-01" @@ -40585,12 +40585,12 @@ { "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}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -40674,12 +40674,12 @@ { "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}/backup/exports?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -40768,12 +40768,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40853,12 +40853,12 @@ { "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}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -40941,12 +40941,12 @@ { "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}/backup/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -41038,12 +41038,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41132,12 +41132,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41221,12 +41221,12 @@ { "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}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -41301,12 +41301,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -41380,12 +41380,12 @@ { "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}/backup/schedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -41473,12 +41473,12 @@ { "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}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -41565,12 +41565,12 @@ { "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}/backup/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -41656,12 +41656,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41747,12 +41747,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41839,12 +41839,12 @@ { "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}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -41921,12 +41921,12 @@ { "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}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42015,12 +42015,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -42107,12 +42107,12 @@ { "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}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -42210,12 +42210,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -42312,12 +42312,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42411,12 +42411,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42493,12 +42493,12 @@ { "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}/backup/tenant/restores?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42587,12 +42587,12 @@ { "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}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42669,12 +42669,12 @@ { "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}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42763,12 +42763,12 @@ { "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}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42852,12 +42852,12 @@ { "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}/backupCheckpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42950,12 +42950,12 @@ { "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}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -43051,12 +43051,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -43157,12 +43157,12 @@ { "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}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -43257,12 +43257,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -43352,12 +43352,12 @@ { "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}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -43464,12 +43464,12 @@ { "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}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -43549,12 +43549,12 @@ { "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}/globalWrites?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -43634,12 +43634,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -43731,12 +43731,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -43835,12 +43835,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -43935,12 +43935,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -44121,12 +44121,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44213,12 +44213,12 @@ { "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}/onlineArchives?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -44314,12 +44314,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44433,12 +44433,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -44531,12 +44531,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -44630,12 +44630,12 @@ { "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}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -44743,12 +44743,12 @@ { "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}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -44832,12 +44832,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -44919,12 +44919,12 @@ { "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}/outageSimulation?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -45014,12 +45014,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45101,12 +45101,12 @@ { "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}/processArgs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -45202,12 +45202,12 @@ { "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}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -45279,12 +45279,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45382,12 +45382,12 @@ { "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}/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -45474,12 +45474,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45569,12 +45569,12 @@ { "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}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -45652,12 +45652,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45734,12 +45734,12 @@ { "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}/search/deployment?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -45830,12 +45830,12 @@ { "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}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -45926,12 +45926,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -46007,12 +46007,12 @@ { "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}/snapshotSchedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -46096,12 +46096,12 @@ { "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}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -46199,12 +46199,12 @@ { "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}/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -46294,12 +46294,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -46384,12 +46384,12 @@ { "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}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -46485,12 +46485,12 @@ { "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}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -46564,12 +46564,12 @@ { "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}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -46691,12 +46691,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -46785,12 +46785,12 @@ { "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}/containers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46873,12 +46873,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46949,12 +46949,12 @@ { "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}/containers/all?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -47038,12 +47038,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47116,12 +47116,12 @@ { "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}/containers/{containerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47217,12 +47217,12 @@ { "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}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -47287,12 +47287,12 @@ { "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}/customDBRoles/roles?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47375,12 +47375,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47457,12 +47457,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47534,12 +47534,12 @@ { "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}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47631,12 +47631,12 @@ { "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}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -47714,12 +47714,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47799,12 +47799,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47875,12 +47875,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47952,12 +47952,12 @@ { "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/{tenantName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48049,12 +48049,12 @@ { "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}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -48131,12 +48131,12 @@ { "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/{tenantName}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -48219,12 +48219,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -48308,12 +48308,12 @@ { "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/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48411,12 +48411,12 @@ { "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}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -48517,12 +48517,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -48593,12 +48593,12 @@ { "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}/databaseUsers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48833,12 +48833,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48925,12 +48925,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49012,12 +49012,12 @@ { "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}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49119,12 +49119,12 @@ { "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}/databaseUsers/{databaseName}/{username}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -49207,12 +49207,12 @@ { "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}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49309,12 +49309,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49442,12 +49442,12 @@ { "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}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49572,12 +49572,12 @@ { "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}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49639,12 +49639,12 @@ { "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}/encryptionAtRest?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49724,12 +49724,12 @@ { "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}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -49803,12 +49803,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49891,12 +49891,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49993,12 +49993,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -50082,12 +50082,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50225,12 +50225,12 @@ { "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}/events?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50316,12 +50316,12 @@ { "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}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50386,12 +50386,12 @@ { "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}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50502,12 +50502,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50621,12 +50621,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50732,12 +50732,12 @@ { "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}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50814,12 +50814,12 @@ { "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}/integrations?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50909,12 +50909,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51002,12 +51002,12 @@ { "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}/integrations/{integrationType}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51118,12 +51118,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -51231,12 +51231,12 @@ { "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}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -51311,12 +51311,12 @@ { "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}/invites?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -51395,12 +51395,12 @@ { "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}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -51473,12 +51473,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -51551,12 +51551,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -51633,12 +51633,12 @@ { "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}/invites/{invitationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -51726,12 +51726,12 @@ { "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}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -51797,12 +51797,12 @@ { "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}/ipAddresses?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51876,12 +51876,12 @@ { "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}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51973,12 +51973,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52071,12 +52071,12 @@ { "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}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52180,12 +52180,12 @@ { "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}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -52270,12 +52270,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -52361,12 +52361,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -52448,12 +52448,12 @@ { "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}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52524,12 +52524,12 @@ { "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}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52600,12 +52600,12 @@ { "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -52664,12 +52664,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52729,12 +52729,12 @@ { "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}/maintenanceWindow?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52805,12 +52805,12 @@ { "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}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -52869,12 +52869,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52933,12 +52933,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53000,12 +53000,12 @@ { "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}/managedSlowMs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53067,12 +53067,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53134,12 +53134,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53262,12 +53262,12 @@ { "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}/mongoDBVersions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53355,12 +53355,12 @@ { "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}/peers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53444,12 +53444,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53526,12 +53526,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -53606,12 +53606,12 @@ { "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}/peers/{peerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53703,12 +53703,12 @@ { "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}/peers/{peerId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -53773,12 +53773,12 @@ { "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}/pipelines?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53852,12 +53852,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53931,12 +53931,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54011,12 +54011,12 @@ { "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}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54105,12 +54105,12 @@ { "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}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -54190,12 +54190,12 @@ { "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}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54291,12 +54291,12 @@ { "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}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54373,12 +54373,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54455,12 +54455,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54556,12 +54556,12 @@ { "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}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54651,12 +54651,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54744,12 +54744,12 @@ { "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}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54837,12 +54837,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54919,12 +54919,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54989,12 +54989,12 @@ { "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}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55068,12 +55068,12 @@ { "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}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -55149,12 +55149,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55240,12 +55240,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55330,12 +55330,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55418,12 +55418,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55517,12 +55517,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -55602,12 +55602,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55696,12 +55696,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55791,12 +55791,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55905,12 +55905,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56009,12 +56009,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56114,12 +56114,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56186,12 +56186,12 @@ { "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}/privateIpMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56270,12 +56270,12 @@ { "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}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -56352,12 +56352,12 @@ { "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}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56431,12 +56431,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56513,12 +56513,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56596,12 +56596,12 @@ { "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}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56672,12 +56672,12 @@ { "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}/processes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56750,12 +56750,12 @@ { "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}/processes/{processId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56837,12 +56837,12 @@ { "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}/processes/{processId}/databases?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56924,12 +56924,12 @@ { "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}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57050,12 +57050,12 @@ { "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}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57137,12 +57137,12 @@ { "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}/processes/{processId}/disks?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57221,12 +57221,12 @@ { "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}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57356,12 +57356,12 @@ { "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}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57598,12 +57598,12 @@ { "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}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57694,12 +57694,12 @@ { "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}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57814,12 +57814,12 @@ { "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}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57950,12 +57950,12 @@ { "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}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58023,12 +58023,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58094,12 +58094,12 @@ { "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}/pushBasedLogExport?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58177,12 +58177,12 @@ { "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}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -58260,12 +58260,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58342,12 +58342,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58418,12 +58418,12 @@ { "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}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58494,12 +58494,12 @@ { "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}/serverless?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58576,12 +58576,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58667,12 +58667,12 @@ { "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}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58764,12 +58764,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58858,12 +58858,12 @@ { "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}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58949,12 +58949,12 @@ { "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}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59041,12 +59041,12 @@ { "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}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59120,12 +59120,12 @@ { "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}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59203,12 +59203,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59288,12 +59288,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59371,12 +59371,12 @@ { "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}/serverless/{name}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59462,12 +59462,12 @@ { "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -59535,12 +59535,12 @@ { "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}/settings?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59617,12 +59617,12 @@ { "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}/settings\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -59690,12 +59690,12 @@ { "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}/streams?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59769,12 +59769,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59851,12 +59851,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59936,12 +59936,12 @@ { "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}/streams/{tenantName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60030,12 +60030,12 @@ { "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}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -60139,12 +60139,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -60224,12 +60224,12 @@ { "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}/streams/{tenantName}/connections?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60315,12 +60315,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60406,12 +60406,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60489,12 +60489,12 @@ { "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}/streams/{tenantName}/connections/{connectionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60592,12 +60592,12 @@ { "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}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -60677,12 +60677,12 @@ { "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}/teams?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60769,12 +60769,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60855,12 +60855,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60956,12 +60956,12 @@ { "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}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -61023,12 +61023,12 @@ { "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}/userSecurity?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61102,12 +61102,12 @@ { "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}/userSecurity\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -61166,12 +61166,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61233,12 +61233,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61314,12 +61314,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61393,12 +61393,12 @@ { "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}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61487,12 +61487,12 @@ { "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}/users?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61569,12 +61569,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -61665,12 +61665,12 @@ { "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}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -61755,12 +61755,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -61840,12 +61840,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -61916,12 +61916,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -61990,12 +61990,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -62075,12 +62075,12 @@ { "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/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -62155,12 +62155,12 @@ { "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}/apiKeys?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -62235,12 +62235,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -62318,12 +62318,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -62399,12 +62399,12 @@ { "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}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -62494,12 +62494,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -62586,12 +62586,12 @@ { "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}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -62692,12 +62692,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -62792,12 +62792,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -62887,12 +62887,12 @@ { "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}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -62965,12 +62965,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -63056,12 +63056,12 @@ { "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}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -63171,12 +63171,12 @@ { "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}/events?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -63262,12 +63262,12 @@ { "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}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -63335,12 +63335,12 @@ { "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}/federationSettings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -63425,12 +63425,12 @@ { "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}/groups?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -63510,12 +63510,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63592,12 +63592,12 @@ { "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/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] }, @@ -63674,12 +63674,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -63756,12 +63756,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -63836,12 +63836,12 @@ { "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63930,12 +63930,12 @@ { "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/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -64088,12 +64088,12 @@ { "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}/invoices?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64158,12 +64158,12 @@ { "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}/invoices/pending?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64246,12 +64246,12 @@ { "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}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64327,12 +64327,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-02-01+csv\" \\\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+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -64400,12 +64400,12 @@ { "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}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64467,12 +64467,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -64546,12 +64546,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -64619,12 +64619,12 @@ { "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}/settings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -64701,12 +64701,12 @@ { "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/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -64787,12 +64787,12 @@ { "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}/teams?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -64876,12 +64876,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -64962,12 +64962,12 @@ { "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}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -65051,12 +65051,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -65138,12 +65138,12 @@ { "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}/teams/{teamId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65239,12 +65239,12 @@ { "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/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -65337,12 +65337,12 @@ { "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}/teams/{teamId}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65441,12 +65441,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -65539,12 +65539,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -65621,12 +65621,12 @@ { "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}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -65706,12 +65706,12 @@ { "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 DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -65802,12 +65802,12 @@ { "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/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -65880,12 +65880,12 @@ { "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 POST \"https://cloud.mongodb.com/api/atlas/v2/users\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -65957,12 +65957,12 @@ { "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/users/byName/{userName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66036,12 +66036,12 @@ { "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/users/{userId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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 7f4362c31d..bfc8c0b8ad 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 @@ -28690,13 +28690,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28760,13 +28760,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28831,13 +28831,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28902,13 +28902,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -28971,13 +28971,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -29045,13 +29045,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29127,13 +29127,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -29208,13 +29208,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29296,7 +29296,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -29304,7 +29304,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29373,13 +29373,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29452,7 +29452,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -29460,7 +29460,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29537,13 +29537,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -29619,13 +29619,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29708,7 +29708,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -29716,7 +29716,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -29808,13 +29808,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29890,13 +29890,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29980,7 +29980,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -29988,7 +29988,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30057,13 +30057,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30130,13 +30130,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -30220,7 +30220,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30228,7 +30228,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30295,13 +30295,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30365,13 +30365,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30446,7 +30446,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30454,7 +30454,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30531,7 +30531,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30539,7 +30539,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30610,13 +30610,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30697,7 +30697,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30705,7 +30705,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -30788,13 +30788,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30871,13 +30871,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30954,13 +30954,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31029,13 +31029,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31109,7 +31109,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31117,7 +31117,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31195,13 +31195,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31278,13 +31278,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31370,7 +31370,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31378,7 +31378,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31468,7 +31468,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31476,7 +31476,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31559,13 +31559,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31645,13 +31645,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31728,13 +31728,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31820,7 +31820,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31828,7 +31828,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -31911,13 +31911,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31986,13 +31986,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32061,7 +32061,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32069,7 +32069,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32148,13 +32148,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32237,7 +32237,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32245,7 +32245,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32327,7 +32327,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32335,7 +32335,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32400,13 +32400,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32477,7 +32477,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32485,7 +32485,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32550,13 +32550,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32625,7 +32625,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32633,7 +32633,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32702,13 +32702,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32785,7 +32785,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32793,7 +32793,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -32872,13 +32872,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32952,13 +32952,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33025,13 +33025,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33114,7 +33114,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33122,7 +33122,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33188,13 +33188,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33266,7 +33266,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33274,7 +33274,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33356,13 +33356,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33434,13 +33434,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33525,7 +33525,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33533,7 +33533,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33608,13 +33608,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33693,7 +33693,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33701,7 +33701,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -33785,13 +33785,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33867,13 +33867,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33959,7 +33959,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33967,7 +33967,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34045,13 +34045,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34134,7 +34134,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34142,7 +34142,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34221,13 +34221,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34302,13 +34302,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34395,7 +34395,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34403,7 +34403,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34488,13 +34488,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34574,13 +34574,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34654,13 +34654,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -34733,13 +34733,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34824,7 +34824,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34832,7 +34832,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -34912,13 +34912,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35001,7 +35001,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35009,7 +35009,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35094,13 +35094,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35182,13 +35182,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35277,7 +35277,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35285,7 +35285,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35368,13 +35368,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35456,13 +35456,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35536,13 +35536,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35629,7 +35629,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35637,7 +35637,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35724,7 +35724,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35732,7 +35732,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -35808,13 +35808,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35897,13 +35897,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35977,13 +35977,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36066,13 +36066,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36148,13 +36148,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36240,13 +36240,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36333,7 +36333,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36341,7 +36341,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36434,13 +36434,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36528,13 +36528,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36619,13 +36619,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36721,7 +36721,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -36729,7 +36729,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -36808,13 +36808,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36891,13 +36891,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -36982,7 +36982,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36990,7 +36990,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37081,13 +37081,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -37174,7 +37174,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37182,7 +37182,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37332,7 +37332,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37340,7 +37340,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37420,13 +37420,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37513,7 +37513,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37521,7 +37521,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37609,13 +37609,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37702,13 +37702,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37804,7 +37804,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -37812,7 +37812,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -37916,14 +37916,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ @@ -38003,13 +38003,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -38087,13 +38087,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38176,7 +38176,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38184,7 +38184,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38264,13 +38264,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38358,7 +38358,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38366,7 +38366,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38439,7 +38439,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38447,7 +38447,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38538,13 +38538,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38625,7 +38625,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38633,7 +38633,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -38722,13 +38722,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38803,13 +38803,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -38884,13 +38884,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38974,7 +38974,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38982,7 +38982,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39068,7 +39068,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39076,7 +39076,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39155,13 +39155,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39243,7 +39243,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39251,7 +39251,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39339,13 +39339,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39429,13 +39429,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39516,13 +39516,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39610,7 +39610,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -39618,7 +39618,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -39692,13 +39692,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39805,14 +39805,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ @@ -39891,13 +39891,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39975,7 +39975,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39983,7 +39983,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40063,7 +40063,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40071,7 +40071,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40152,13 +40152,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40235,7 +40235,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40243,7 +40243,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40324,13 +40324,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -40402,13 +40402,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40495,7 +40495,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40503,7 +40503,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40571,13 +40571,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40642,13 +40642,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40725,7 +40725,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40733,7 +40733,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -40808,13 +40808,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -40884,13 +40884,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40973,7 +40973,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40981,7 +40981,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41057,13 +41057,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41138,7 +41138,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41146,7 +41146,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41217,13 +41217,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41294,13 +41294,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41383,7 +41383,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41391,7 +41391,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41466,13 +41466,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41559,13 +41559,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41652,13 +41652,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41755,7 +41755,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41763,7 +41763,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -41858,14 +41858,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ @@ -41932,13 +41932,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42106,7 +42106,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42114,7 +42114,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42209,13 +42209,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42305,13 +42305,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42414,7 +42414,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42422,7 +42422,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42498,13 +42498,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42596,7 +42596,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42604,7 +42604,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -42715,13 +42715,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42827,13 +42827,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42899,13 +42899,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42992,7 +42992,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43000,7 +43000,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -43073,13 +43073,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43156,7 +43156,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43164,7 +43164,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -43253,13 +43253,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -43338,13 +43338,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43464,13 +43464,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43553,13 +43553,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43624,13 +43624,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43725,13 +43725,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43825,13 +43825,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43924,13 +43924,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44000,13 +44000,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44091,13 +44091,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44181,13 +44181,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44283,7 +44283,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44291,7 +44291,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44387,7 +44387,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44395,7 +44395,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44469,13 +44469,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44550,7 +44550,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44558,7 +44558,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44631,7 +44631,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44639,7 +44639,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44714,13 +44714,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44795,13 +44795,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44884,7 +44884,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44892,7 +44892,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -44960,13 +44960,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45037,13 +45037,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45146,13 +45146,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45256,13 +45256,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45376,7 +45376,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45384,7 +45384,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45472,7 +45472,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45480,7 +45480,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45551,13 +45551,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45625,7 +45625,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45633,7 +45633,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45714,7 +45714,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45722,7 +45722,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -45803,13 +45803,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45871,13 +45871,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -45939,13 +45939,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46015,7 +46015,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46023,7 +46023,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46087,7 +46087,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46095,7 +46095,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46159,7 +46159,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46167,7 +46167,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46232,13 +46232,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46301,13 +46301,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -46370,7 +46370,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46378,7 +46378,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46484,13 +46484,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46568,13 +46568,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46652,7 +46652,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46660,7 +46660,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46736,13 +46736,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46815,13 +46815,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46905,7 +46905,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46913,7 +46913,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -46981,13 +46981,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47059,7 +47059,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47067,7 +47067,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47142,13 +47142,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47221,13 +47221,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47310,7 +47310,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -47318,7 +47318,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47396,13 +47396,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47486,13 +47486,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47566,7 +47566,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47574,7 +47574,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47650,7 +47650,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47658,7 +47658,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -47744,13 +47744,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47834,13 +47834,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47923,13 +47923,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48010,7 +48010,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48018,7 +48018,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48096,13 +48096,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48185,13 +48185,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48275,13 +48275,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48377,7 +48377,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48385,7 +48385,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48477,13 +48477,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48574,13 +48574,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48653,7 +48653,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48661,7 +48661,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48728,13 +48728,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48805,7 +48805,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48813,7 +48813,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -48889,13 +48889,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48979,7 +48979,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48987,7 +48987,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49070,13 +49070,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -49156,13 +49156,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49249,7 +49249,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -49257,7 +49257,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49326,13 +49326,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49407,7 +49407,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49415,7 +49415,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49487,13 +49487,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49583,7 +49583,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49591,7 +49591,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -49667,13 +49667,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -49748,13 +49748,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49820,13 +49820,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49897,13 +49897,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49977,13 +49977,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50060,13 +50060,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50169,13 +50169,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50249,13 +50249,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50331,13 +50331,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50456,13 +50456,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50692,13 +50692,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50789,13 +50789,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50903,13 +50903,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51024,13 +51024,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51097,13 +51097,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -51169,13 +51169,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51249,7 +51249,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51257,7 +51257,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -51333,7 +51333,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51341,7 +51341,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -51418,7 +51418,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -51426,7 +51426,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -51499,13 +51499,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51571,13 +51571,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51650,7 +51650,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51658,7 +51658,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -51737,13 +51737,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51827,7 +51827,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51835,7 +51835,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -51920,13 +51920,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52003,13 +52003,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52092,13 +52092,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52170,13 +52170,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52252,7 +52252,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52260,7 +52260,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -52338,13 +52338,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52419,13 +52419,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52505,7 +52505,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -52513,7 +52513,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -52582,13 +52582,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52661,7 +52661,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52669,7 +52669,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -52736,13 +52736,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52813,7 +52813,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52821,7 +52821,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -52896,13 +52896,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52978,13 +52978,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53065,7 +53065,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53073,7 +53073,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -53169,14 +53169,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ @@ -53250,13 +53250,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53335,7 +53335,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53343,7 +53343,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -53424,13 +53424,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53505,13 +53505,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53598,7 +53598,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53606,7 +53606,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -53680,13 +53680,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53766,7 +53766,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53774,7 +53774,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -53854,13 +53854,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53947,7 +53947,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53955,7 +53955,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -54020,13 +54020,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54100,7 +54100,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54108,7 +54108,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -54175,13 +54175,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54244,13 +54244,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54322,7 +54322,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54330,7 +54330,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -54404,13 +54404,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54488,13 +54488,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54568,13 +54568,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -54657,7 +54657,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54665,7 +54665,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -54743,13 +54743,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -54825,13 +54825,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54907,7 +54907,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54915,7 +54915,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -54992,13 +54992,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55066,13 +55066,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55147,7 +55147,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55155,7 +55155,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -55226,13 +55226,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55304,7 +55304,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55312,7 +55312,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -55389,13 +55389,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55469,13 +55469,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55558,7 +55558,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55566,7 +55566,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -55646,13 +55646,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55739,7 +55739,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55747,7 +55747,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -55836,13 +55836,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55926,13 +55926,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56003,7 +56003,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56011,7 +56011,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -56094,13 +56094,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56198,13 +56198,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56287,13 +56287,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56360,13 +56360,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56449,13 +56449,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56530,13 +56530,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56609,7 +56609,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56617,7 +56617,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -56692,7 +56692,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56700,7 +56700,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -56775,13 +56775,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56855,13 +56855,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56943,7 +56943,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56951,7 +56951,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -57080,13 +57080,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57166,13 +57166,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57253,13 +57253,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-02-01+csv" \ -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 --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -57324,13 +57324,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57397,13 +57397,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57467,13 +57467,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57544,7 +57544,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57552,7 +57552,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -57621,13 +57621,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57700,7 +57700,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57708,7 +57708,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -57783,13 +57783,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57867,7 +57867,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57875,7 +57875,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -57956,13 +57956,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58040,13 +58040,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58133,7 +58133,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -58141,7 +58141,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -58226,13 +58226,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58321,7 +58321,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58329,7 +58329,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -58417,13 +58417,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58499,13 +58499,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58575,13 +58575,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58658,13 +58658,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58747,7 +58747,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58755,7 +58755,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -58833,7 +58833,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58841,7 +58841,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ @@ -58916,13 +58916,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58993,13 +58993,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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 edd054c5ca..cc50636cce 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 @@ -35426,12 +35426,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35493,12 +35493,12 @@ { "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/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35566,12 +35566,12 @@ { "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/clusters?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35639,12 +35639,12 @@ { "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/eventTypes?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35703,12 +35703,12 @@ { "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/federationSettings/{federationSettingsId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -35779,12 +35779,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -35862,12 +35862,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -35943,12 +35943,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -36035,12 +36035,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -36108,12 +36108,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -36190,12 +36190,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -36273,12 +36273,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -36357,12 +36357,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -36452,12 +36452,12 @@ { "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 PUT \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -36560,12 +36560,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36644,12 +36644,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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" @@ -36735,12 +36735,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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" @@ -36806,12 +36806,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36882,12 +36882,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] }, @@ -36978,12 +36978,12 @@ { "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/groups\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 '{ }'" } ] } @@ -37062,12 +37062,12 @@ { "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/byName/{groupName}?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] } @@ -37132,12 +37132,12 @@ { "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -37200,12 +37200,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37285,12 +37285,12 @@ { "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}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -37371,12 +37371,12 @@ { "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/groups/{groupId}/access\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37451,12 +37451,12 @@ { "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}/accessList?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37549,12 +37549,12 @@ { "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/groups/{groupId}/accessList\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37634,12 +37634,12 @@ { "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}/accessList/{entryValue}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -37720,12 +37720,12 @@ { "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}/accessList/{entryValue}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37807,12 +37807,12 @@ { "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}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -37883,12 +37883,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -37962,12 +37962,12 @@ { "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/groups/{groupId}/alertConfigs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38042,12 +38042,12 @@ { "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}/alertConfigs/{alertConfigId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -38123,12 +38123,12 @@ { "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/{alertConfigId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38215,12 +38215,12 @@ { "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}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -38310,12 +38310,12 @@ { "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 PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -38402,12 +38402,12 @@ { "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/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -38494,12 +38494,12 @@ { "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}/alerts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -38576,12 +38576,12 @@ { "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}/alerts/{alertId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38671,12 +38671,12 @@ { "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}/alerts/{alertId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -38763,12 +38763,12 @@ { "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}/alerts/{alertId}/alertConfigs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -38843,12 +38843,12 @@ { "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}/apiKeys?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38919,12 +38919,12 @@ { "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/groups/{groupId}/apiKeys\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39005,12 +39005,12 @@ { "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}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39105,12 +39105,12 @@ { "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}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -39196,12 +39196,12 @@ { "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/groups/{groupId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39263,12 +39263,12 @@ { "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}/auditLog?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39342,12 +39342,12 @@ { "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}/auditLog\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -39409,12 +39409,12 @@ { "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}/awsCustomDNS?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39485,12 +39485,12 @@ { "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}/awsCustomDNS\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -39562,12 +39562,12 @@ { "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}/backup/exportBuckets?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -39648,12 +39648,12 @@ { "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/groups/{groupId}/backup/exportBuckets\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -39732,12 +39732,12 @@ { "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}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39811,12 +39811,12 @@ { "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}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -39882,12 +39882,12 @@ { "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}/backupCompliancePolicy?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39974,12 +39974,12 @@ { "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 PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -40041,12 +40041,12 @@ { "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}/cloudProviderAccess?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40121,12 +40121,12 @@ { "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/groups/{groupId}/cloudProviderAccess\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40212,12 +40212,12 @@ { "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}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -40291,12 +40291,12 @@ { "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}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40389,12 +40389,12 @@ { "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}/cloudProviderAccess/{roleId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -40475,12 +40475,12 @@ { "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}/clusters?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -40565,12 +40565,12 @@ { "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/groups/{groupId}/clusters\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -40661,12 +40661,12 @@ { "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}/clusters/provider/regions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -40751,12 +40751,12 @@ { "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/groups/{groupId}/clusters/tenantUpgrade\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40841,12 +40841,12 @@ { "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/groups/{groupId}/clusters/tenantUpgradeToServerless\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40934,12 +40934,12 @@ { "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41018,12 +41018,12 @@ { "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}/clusters/{clusterName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -41117,12 +41117,12 @@ { "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}/clusters/{clusterName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -41206,12 +41206,12 @@ { "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}/clusters/{clusterName}/backup/exports?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -41300,12 +41300,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/backup/exports\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41385,12 +41385,12 @@ { "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}/clusters/{clusterName}/backup/exports/{exportId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -41473,12 +41473,12 @@ { "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}/clusters/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -41570,12 +41570,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41664,12 +41664,12 @@ { "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/restoreJobs/{restoreJobId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41753,12 +41753,12 @@ { "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}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -41833,12 +41833,12 @@ { "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/schedule\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -41912,12 +41912,12 @@ { "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}/clusters/{clusterName}/backup/schedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -42005,12 +42005,12 @@ { "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}/clusters/{clusterName}/backup/schedule\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -42097,12 +42097,12 @@ { "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}/clusters/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -42188,12 +42188,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/backup/snapshots\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42279,12 +42279,12 @@ { "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -42371,12 +42371,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42453,12 +42453,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/shardedClusters?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42547,12 +42547,12 @@ { "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/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -42639,12 +42639,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -42742,12 +42742,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -42844,12 +42844,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/backup/tenant/download\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42943,12 +42943,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/backup/tenant/restore\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43025,12 +43025,12 @@ { "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}/clusters/{clusterName}/backup/tenant/restores?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -43119,12 +43119,12 @@ { "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}/clusters/{clusterName}/backup/tenant/restores/{restoreId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -43201,12 +43201,12 @@ { "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}/clusters/{clusterName}/backup/tenant/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -43295,12 +43295,12 @@ { "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}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -43384,12 +43384,12 @@ { "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}/clusters/{clusterName}/backupCheckpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -43482,12 +43482,12 @@ { "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}/clusters/{clusterName}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -43583,12 +43583,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/fts/indexes\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -43689,12 +43689,12 @@ { "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}/clusters/{clusterName}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -43789,12 +43789,12 @@ { "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}/fts/indexes/{indexId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -43884,12 +43884,12 @@ { "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}/clusters/{clusterName}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -43996,12 +43996,12 @@ { "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}/clusters/{clusterName}/fts/indexes/{indexId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -44081,12 +44081,12 @@ { "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}/clusters/{clusterName}/globalWrites?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -44166,12 +44166,12 @@ { "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}/globalWrites/customZoneMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -44263,12 +44263,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -44367,12 +44367,12 @@ { "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}/globalWrites/managedNamespaces\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -44467,12 +44467,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -44653,12 +44653,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/index\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44745,12 +44745,12 @@ { "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}/clusters/{clusterName}/onlineArchives?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -44846,12 +44846,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/onlineArchives\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44965,12 +44965,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -45063,12 +45063,12 @@ { "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}/onlineArchives/{archiveId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -45162,12 +45162,12 @@ { "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}/clusters/{clusterName}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -45275,12 +45275,12 @@ { "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}/clusters/{clusterName}/onlineArchives/{archiveId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -45364,12 +45364,12 @@ { "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}/outageSimulation\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -45451,12 +45451,12 @@ { "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}/clusters/{clusterName}/outageSimulation?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -45546,12 +45546,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/outageSimulation\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45633,12 +45633,12 @@ { "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}/clusters/{clusterName}/processArgs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -45734,12 +45734,12 @@ { "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}/clusters/{clusterName}/processArgs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -45811,12 +45811,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/restartPrimaries\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45914,12 +45914,12 @@ { "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}/clusters/{clusterName}/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -46006,12 +46006,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/restoreJobs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46101,12 +46101,12 @@ { "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}/clusters/{clusterName}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -46184,12 +46184,12 @@ { "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}/search/deployment\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -46266,12 +46266,12 @@ { "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}/clusters/{clusterName}/search/deployment?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -46362,12 +46362,12 @@ { "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}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -46458,12 +46458,12 @@ { "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/groups/{groupId}/clusters/{clusterName}/search/deployment\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -46539,12 +46539,12 @@ { "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}/clusters/{clusterName}/snapshotSchedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -46628,12 +46628,12 @@ { "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}/clusters/{clusterName}/snapshotSchedule\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -46731,12 +46731,12 @@ { "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}/clusters/{clusterName}/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -46826,12 +46826,12 @@ { "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}/snapshots/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -46916,12 +46916,12 @@ { "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}/clusters/{clusterName}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -47017,12 +47017,12 @@ { "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}/clusters/{clusterName}/snapshots/{snapshotId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -47096,12 +47096,12 @@ { "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}/clusters/{clusterName}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -47223,12 +47223,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -47317,12 +47317,12 @@ { "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}/containers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47405,12 +47405,12 @@ { "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/groups/{groupId}/containers\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47481,12 +47481,12 @@ { "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}/containers/all?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -47570,12 +47570,12 @@ { "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}/containers/{containerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47648,12 +47648,12 @@ { "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}/containers/{containerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47749,12 +47749,12 @@ { "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}/containers/{containerId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -47819,12 +47819,12 @@ { "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}/customDBRoles/roles?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47907,12 +47907,12 @@ { "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/groups/{groupId}/customDBRoles/roles\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47989,12 +47989,12 @@ { "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}/customDBRoles/roles/{roleName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -48066,12 +48066,12 @@ { "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}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48163,12 +48163,12 @@ { "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}/customDBRoles/roles/{roleName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -48246,12 +48246,12 @@ { "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}/dataFederation?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48331,12 +48331,12 @@ { "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/groups/{groupId}/dataFederation\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48407,12 +48407,12 @@ { "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}/dataFederation/{tenantName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -48484,12 +48484,12 @@ { "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}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48581,12 +48581,12 @@ { "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}/dataFederation/{tenantName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -48663,12 +48663,12 @@ { "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}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -48751,12 +48751,12 @@ { "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}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -48840,12 +48840,12 @@ { "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}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48943,12 +48943,12 @@ { "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}/dataFederation/{tenantName}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -49049,12 +49049,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -49125,12 +49125,12 @@ { "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}/databaseUsers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49365,12 +49365,12 @@ { "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/groups/{groupId}/databaseUsers\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49457,12 +49457,12 @@ { "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}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49544,12 +49544,12 @@ { "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}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49651,12 +49651,12 @@ { "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -49739,12 +49739,12 @@ { "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}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49841,12 +49841,12 @@ { "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/groups/{groupId}/databaseUsers/{username}/certs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49974,12 +49974,12 @@ { "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}/dbAccessHistory/clusters/{clusterName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50104,12 +50104,12 @@ { "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}/dbAccessHistory/processes/{hostname}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50171,12 +50171,12 @@ { "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}/encryptionAtRest?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50256,12 +50256,12 @@ { "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}/encryptionAtRest\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -50335,12 +50335,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50423,12 +50423,12 @@ { "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/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50525,12 +50525,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -50614,12 +50614,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50757,12 +50757,12 @@ { "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}/events?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50848,12 +50848,12 @@ { "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}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50918,12 +50918,12 @@ { "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}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51034,12 +51034,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51153,12 +51153,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51264,12 +51264,12 @@ { "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}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51346,12 +51346,12 @@ { "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}/integrations?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51441,12 +51441,12 @@ { "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}/integrations/{integrationType}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51534,12 +51534,12 @@ { "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}/integrations/{integrationType}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51650,12 +51650,12 @@ { "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/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -51763,12 +51763,12 @@ { "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 PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -51843,12 +51843,12 @@ { "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}/invites?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -51927,12 +51927,12 @@ { "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}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -52005,12 +52005,12 @@ { "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/groups/{groupId}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -52083,12 +52083,12 @@ { "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}/invites/{invitationId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -52165,12 +52165,12 @@ { "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}/invites/{invitationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -52258,12 +52258,12 @@ { "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}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -52329,12 +52329,12 @@ { "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}/ipAddresses?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52408,12 +52408,12 @@ { "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}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52505,12 +52505,12 @@ { "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}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52603,12 +52603,12 @@ { "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}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52712,12 +52712,12 @@ { "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}/limits/{limitName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -52802,12 +52802,12 @@ { "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/groups/{groupId}/liveMigrations\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -52893,12 +52893,12 @@ { "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/groups/{groupId}/liveMigrations/validate\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -52980,12 +52980,12 @@ { "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}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53056,12 +53056,12 @@ { "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}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53132,12 +53132,12 @@ { "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 PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -53196,12 +53196,12 @@ { "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}/maintenanceWindow\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53261,12 +53261,12 @@ { "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}/maintenanceWindow?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53337,12 +53337,12 @@ { "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}/maintenanceWindow\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -53401,12 +53401,12 @@ { "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/groups/{groupId}/maintenanceWindow/autoDefer\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53465,12 +53465,12 @@ { "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/groups/{groupId}/maintenanceWindow/defer\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53532,12 +53532,12 @@ { "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}/managedSlowMs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53599,12 +53599,12 @@ { "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}/managedSlowMs/disable\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53666,12 +53666,12 @@ { "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/groups/{groupId}/managedSlowMs/enable\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53794,12 +53794,12 @@ { "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}/mongoDBVersions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53887,12 +53887,12 @@ { "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}/peers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53976,12 +53976,12 @@ { "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/groups/{groupId}/peers\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54058,12 +54058,12 @@ { "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}/peers/{peerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54138,12 +54138,12 @@ { "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}/peers/{peerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54235,12 +54235,12 @@ { "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -54305,12 +54305,12 @@ { "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}/pipelines?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54384,12 +54384,12 @@ { "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/groups/{groupId}/pipelines\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54463,12 +54463,12 @@ { "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}/pipelines/{pipelineName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54543,12 +54543,12 @@ { "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}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54637,12 +54637,12 @@ { "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}/pipelines/{pipelineName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -54722,12 +54722,12 @@ { "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}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54823,12 +54823,12 @@ { "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}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54905,12 +54905,12 @@ { "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/groups/{groupId}/pipelines/{pipelineName}/pause\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54987,12 +54987,12 @@ { "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/groups/{groupId}/pipelines/{pipelineName}/resume\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55088,12 +55088,12 @@ { "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}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55183,12 +55183,12 @@ { "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}/pipelines/{pipelineName}/runs/{pipelineRunId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55276,12 +55276,12 @@ { "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}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55369,12 +55369,12 @@ { "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/groups/{groupId}/pipelines/{pipelineName}/trigger\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55451,12 +55451,12 @@ { "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/groups/{groupId}/privateEndpoint/endpointService\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55521,12 +55521,12 @@ { "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}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55600,12 +55600,12 @@ { "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}/privateEndpoint/regionalMode\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -55681,12 +55681,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55772,12 +55772,12 @@ { "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/groups/{groupId}/privateEndpoint/serverless/instance/{instanceName}/endpoint\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55862,12 +55862,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55950,12 +55950,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56049,12 +56049,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -56134,12 +56134,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56228,12 +56228,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56323,12 +56323,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56437,12 +56437,12 @@ { "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/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56541,12 +56541,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56646,12 +56646,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56718,12 +56718,12 @@ { "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}/privateIpMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56802,12 +56802,12 @@ { "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}/privateIpMode\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -56884,12 +56884,12 @@ { "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}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56963,12 +56963,12 @@ { "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/groups/{groupId}/privateNetworkSettings/endpointIds\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57045,12 +57045,12 @@ { "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}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -57128,12 +57128,12 @@ { "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}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57204,12 +57204,12 @@ { "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}/processes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57282,12 +57282,12 @@ { "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}/processes/{processId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57369,12 +57369,12 @@ { "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}/processes/{processId}/databases?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57456,12 +57456,12 @@ { "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}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57582,12 +57582,12 @@ { "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}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57669,12 +57669,12 @@ { "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}/processes/{processId}/disks?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57753,12 +57753,12 @@ { "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}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57888,12 +57888,12 @@ { "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}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58130,12 +58130,12 @@ { "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}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58226,12 +58226,12 @@ { "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}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58346,12 +58346,12 @@ { "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}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58482,12 +58482,12 @@ { "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}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58555,12 +58555,12 @@ { "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}/pushBasedLogExport\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58626,12 +58626,12 @@ { "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}/pushBasedLogExport?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58709,12 +58709,12 @@ { "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}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -58792,12 +58792,12 @@ { "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/groups/{groupId}/pushBasedLogExport\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58874,12 +58874,12 @@ { "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/groups/{groupId}/sampleDatasetLoad/{name}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58950,12 +58950,12 @@ { "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}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59026,12 +59026,12 @@ { "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}/serverless?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59108,12 +59108,12 @@ { "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/groups/{groupId}/serverless\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59199,12 +59199,12 @@ { "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}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59296,12 +59296,12 @@ { "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/groups/{groupId}/serverless/{clusterName}/backup/restoreJobs\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59390,12 +59390,12 @@ { "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}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59481,12 +59481,12 @@ { "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}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59573,12 +59573,12 @@ { "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}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59652,12 +59652,12 @@ { "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}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59735,12 +59735,12 @@ { "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/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59820,12 +59820,12 @@ { "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}/serverless/{name}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59903,12 +59903,12 @@ { "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}/serverless/{name}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59994,12 +59994,12 @@ { "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}/serverless/{name}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -60070,12 +60070,12 @@ { "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}/serviceAccounts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60150,12 +60150,12 @@ { "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/groups/{groupId}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60230,12 +60230,12 @@ { "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}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60307,12 +60307,12 @@ { "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}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60398,12 +60398,12 @@ { "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}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -60491,12 +60491,12 @@ { "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/groups/{groupId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60564,12 +60564,12 @@ { "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}/settings?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60646,12 +60646,12 @@ { "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}/settings\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -60719,12 +60719,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60798,12 +60798,12 @@ { "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/groups/{groupId}/streams\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60880,12 +60880,12 @@ { "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}/streams/{tenantName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60965,12 +60965,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61059,12 +61059,12 @@ { "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}/streams/{tenantName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -61168,12 +61168,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -61253,12 +61253,12 @@ { "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}/connections?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61344,12 +61344,12 @@ { "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/groups/{groupId}/streams/{tenantName}/connections\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61435,12 +61435,12 @@ { "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}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -61518,12 +61518,12 @@ { "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}/connections/{connectionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61621,12 +61621,12 @@ { "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}/streams/{tenantName}/connections/{connectionName}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -61706,12 +61706,12 @@ { "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}/teams?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61798,12 +61798,12 @@ { "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/groups/{groupId}/teams\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61884,12 +61884,12 @@ { "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}/teams/{teamId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -61985,12 +61985,12 @@ { "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}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -62052,12 +62052,12 @@ { "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}/userSecurity?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62131,12 +62131,12 @@ { "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}/userSecurity\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -62195,12 +62195,12 @@ { "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}/userSecurity/customerX509\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62262,12 +62262,12 @@ { "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}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62343,12 +62343,12 @@ { "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/groups/{groupId}/userSecurity/ldap/verify\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62422,12 +62422,12 @@ { "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}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62516,12 +62516,12 @@ { "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}/users?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62598,12 +62598,12 @@ { "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}/users/{userId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -62694,12 +62694,12 @@ { "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 PUT \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -62784,12 +62784,12 @@ { "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/orgs?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -62869,12 +62869,12 @@ { "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\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -62945,12 +62945,12 @@ { "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/orgs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -63019,12 +63019,12 @@ { "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/orgs/{orgId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63104,12 +63104,12 @@ { "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/orgs/{orgId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -63184,12 +63184,12 @@ { "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/orgs/{orgId}/apiKeys?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63264,12 +63264,12 @@ { "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}/apiKeys\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -63347,12 +63347,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -63428,12 +63428,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63523,12 +63523,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -63615,12 +63615,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -63721,12 +63721,12 @@ { "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}/apiKeys/{apiUserId}/accessList\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -63821,12 +63821,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -63916,12 +63916,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -63994,12 +63994,12 @@ { "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}/billing/costExplorer/usage\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -64085,12 +64085,12 @@ { "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/orgs/{orgId}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64200,12 +64200,12 @@ { "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/orgs/{orgId}/events?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64291,12 +64291,12 @@ { "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/orgs/{orgId}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64364,12 +64364,12 @@ { "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/orgs/{orgId}/federationSettings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64454,12 +64454,12 @@ { "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/orgs/{orgId}/groups?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -64539,12 +64539,12 @@ { "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/orgs/{orgId}/invites?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -64621,12 +64621,12 @@ { "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/orgs/{orgId}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] }, @@ -64703,12 +64703,12 @@ { "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}/invites\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -64785,12 +64785,12 @@ { "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/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -64865,12 +64865,12 @@ { "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/orgs/{orgId}/invites/{invitationId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -64959,12 +64959,12 @@ { "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/orgs/{orgId}/invites/{invitationId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -65117,12 +65117,12 @@ { "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/orgs/{orgId}/invoices?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -65187,12 +65187,12 @@ { "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/orgs/{orgId}/invoices/pending?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -65275,12 +65275,12 @@ { "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/orgs/{orgId}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -65356,12 +65356,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-10-01+csv\" \\\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+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -65429,12 +65429,12 @@ { "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/orgs/{orgId}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -65496,12 +65496,12 @@ { "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/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65575,12 +65575,12 @@ { "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -65651,12 +65651,12 @@ { "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/orgs/{orgId}/serviceAccounts?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65730,12 +65730,12 @@ { "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}/serviceAccounts\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -65806,12 +65806,12 @@ { "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/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -65883,12 +65883,12 @@ { "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/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65974,12 +65974,12 @@ { "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/orgs/{orgId}/serviceAccounts/{serviceAccountId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -66059,12 +66059,12 @@ { "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/orgs/{orgId}/serviceAccounts/{serviceAccountId}/groups?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66149,12 +66149,12 @@ { "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}/serviceAccounts/{serviceAccountId}/secrets\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -66234,12 +66234,12 @@ { "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/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -66307,12 +66307,12 @@ { "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/orgs/{orgId}/settings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -66389,12 +66389,12 @@ { "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/orgs/{orgId}/settings\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -66475,12 +66475,12 @@ { "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/orgs/{orgId}/teams?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -66564,12 +66564,12 @@ { "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}/teams\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -66650,12 +66650,12 @@ { "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/orgs/{orgId}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66739,12 +66739,12 @@ { "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/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -66826,12 +66826,12 @@ { "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/orgs/{orgId}/teams/{teamId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -66927,12 +66927,12 @@ { "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/orgs/{orgId}/teams/{teamId}\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -67025,12 +67025,12 @@ { "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/orgs/{orgId}/teams/{teamId}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67129,12 +67129,12 @@ { "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}/teams/{teamId}/users\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67227,12 +67227,12 @@ { "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/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -67309,12 +67309,12 @@ { "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/orgs/{orgId}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -67394,12 +67394,12 @@ { "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/orgs/{orgId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -67490,12 +67490,12 @@ { "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 PUT \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}/roles\" \\\n -d '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -67568,12 +67568,12 @@ { "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/users\" \\\n -d '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67645,12 +67645,12 @@ { "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/users/byName/{userName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -67724,12 +67724,12 @@ { "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/users/{userId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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 404368f4a7..b9068d1172 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 @@ -29111,13 +29111,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29181,13 +29181,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29252,13 +29252,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29323,13 +29323,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29392,13 +29392,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -29466,13 +29466,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29548,13 +29548,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -29629,13 +29629,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29717,7 +29717,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -29725,7 +29725,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -29794,13 +29794,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29873,7 +29873,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -29881,7 +29881,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -29958,13 +29958,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30040,13 +30040,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30129,7 +30129,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30137,7 +30137,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30229,13 +30229,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30311,13 +30311,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30401,7 +30401,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30409,7 +30409,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30478,13 +30478,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30551,13 +30551,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -30641,7 +30641,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30649,7 +30649,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30716,13 +30716,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30786,13 +30786,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -30867,7 +30867,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30875,7 +30875,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -30952,7 +30952,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30960,7 +30960,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31031,13 +31031,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31118,7 +31118,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31126,7 +31126,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31209,13 +31209,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31292,13 +31292,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31375,13 +31375,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31450,13 +31450,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31530,7 +31530,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31538,7 +31538,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31616,13 +31616,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31699,13 +31699,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31791,7 +31791,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31799,7 +31799,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31889,7 +31889,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31897,7 +31897,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -31980,13 +31980,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32066,13 +32066,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32149,13 +32149,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32241,7 +32241,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32249,7 +32249,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32332,13 +32332,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32407,13 +32407,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32482,7 +32482,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32490,7 +32490,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32569,13 +32569,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32658,7 +32658,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32666,7 +32666,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32748,7 +32748,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32756,7 +32756,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32821,13 +32821,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32898,7 +32898,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32906,7 +32906,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -32971,13 +32971,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33046,7 +33046,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33054,7 +33054,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33123,13 +33123,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33206,7 +33206,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33214,7 +33214,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33293,13 +33293,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33373,13 +33373,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33445,13 +33445,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33531,7 +33531,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33539,7 +33539,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33604,13 +33604,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33682,7 +33682,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33690,7 +33690,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -33772,13 +33772,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33850,13 +33850,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33941,7 +33941,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33949,7 +33949,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34024,13 +34024,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34109,7 +34109,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34117,7 +34117,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34201,13 +34201,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34283,13 +34283,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34375,7 +34375,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -34383,7 +34383,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34461,13 +34461,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34550,7 +34550,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34558,7 +34558,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34637,13 +34637,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34718,13 +34718,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34811,7 +34811,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34819,7 +34819,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -34904,13 +34904,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34990,13 +34990,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35070,13 +35070,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -35149,13 +35149,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35240,7 +35240,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35248,7 +35248,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35328,13 +35328,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35417,7 +35417,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35425,7 +35425,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35510,13 +35510,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35598,13 +35598,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35693,7 +35693,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35701,7 +35701,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -35784,13 +35784,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35872,13 +35872,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35952,13 +35952,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36045,7 +36045,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36053,7 +36053,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36140,7 +36140,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36148,7 +36148,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36224,13 +36224,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36313,13 +36313,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36393,13 +36393,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36482,13 +36482,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36564,13 +36564,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36656,13 +36656,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36749,7 +36749,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36757,7 +36757,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -36850,13 +36850,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36944,13 +36944,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37035,13 +37035,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37137,7 +37137,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -37145,7 +37145,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37224,13 +37224,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37307,13 +37307,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -37398,7 +37398,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37406,7 +37406,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37497,13 +37497,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -37590,7 +37590,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37598,7 +37598,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37748,7 +37748,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37756,7 +37756,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -37836,13 +37836,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37929,7 +37929,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37937,7 +37937,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38025,13 +38025,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -38118,13 +38118,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38220,7 +38220,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -38228,7 +38228,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38332,14 +38332,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ @@ -38419,13 +38419,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -38503,13 +38503,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38592,7 +38592,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38600,7 +38600,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38680,13 +38680,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38774,7 +38774,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38782,7 +38782,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38855,7 +38855,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38863,7 +38863,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -38954,13 +38954,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39041,7 +39041,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39049,7 +39049,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -39138,13 +39138,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39219,13 +39219,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -39300,13 +39300,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39390,7 +39390,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39398,7 +39398,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -39484,7 +39484,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39492,7 +39492,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -39571,13 +39571,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39659,7 +39659,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39667,7 +39667,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -39755,13 +39755,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39845,13 +39845,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39932,13 +39932,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40026,7 +40026,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40034,7 +40034,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40108,13 +40108,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40221,14 +40221,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ @@ -40307,13 +40307,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40391,7 +40391,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40399,7 +40399,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40479,7 +40479,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40487,7 +40487,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40568,13 +40568,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40651,7 +40651,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40659,7 +40659,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40740,13 +40740,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -40818,13 +40818,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40911,7 +40911,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40919,7 +40919,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -40987,13 +40987,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41058,13 +41058,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41141,7 +41141,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41149,7 +41149,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41224,13 +41224,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41300,13 +41300,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41389,7 +41389,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41397,7 +41397,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41473,13 +41473,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41554,7 +41554,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41562,7 +41562,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41633,13 +41633,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41710,13 +41710,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41799,7 +41799,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41807,7 +41807,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -41882,13 +41882,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41975,13 +41975,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42068,13 +42068,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42171,7 +42171,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42179,7 +42179,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42274,14 +42274,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ @@ -42348,13 +42348,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42522,7 +42522,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42530,7 +42530,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42625,13 +42625,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42721,13 +42721,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42830,7 +42830,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42838,7 +42838,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -42914,13 +42914,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43012,7 +43012,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43020,7 +43020,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43131,13 +43131,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43243,13 +43243,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43315,13 +43315,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43408,7 +43408,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43416,7 +43416,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43489,13 +43489,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43572,7 +43572,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43580,7 +43580,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -43669,13 +43669,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -43754,13 +43754,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43880,13 +43880,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43969,13 +43969,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44040,13 +44040,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44141,13 +44141,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44241,13 +44241,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44340,13 +44340,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44416,13 +44416,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44507,13 +44507,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44597,13 +44597,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44699,7 +44699,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44707,7 +44707,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -44803,7 +44803,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44811,7 +44811,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -44885,13 +44885,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44966,7 +44966,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44974,7 +44974,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45047,7 +45047,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45055,7 +45055,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45130,13 +45130,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45211,13 +45211,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45300,7 +45300,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45308,7 +45308,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45376,13 +45376,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45453,13 +45453,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45562,13 +45562,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45672,13 +45672,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45792,7 +45792,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45800,7 +45800,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45888,7 +45888,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45896,7 +45896,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -45967,13 +45967,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46041,7 +46041,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46049,7 +46049,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46130,7 +46130,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46138,7 +46138,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46219,13 +46219,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46287,13 +46287,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -46355,13 +46355,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46431,7 +46431,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46439,7 +46439,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46503,7 +46503,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46511,7 +46511,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46575,7 +46575,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46583,7 +46583,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46648,13 +46648,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46717,13 +46717,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -46786,7 +46786,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46794,7 +46794,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -46900,13 +46900,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46984,13 +46984,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47068,7 +47068,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47076,7 +47076,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47152,13 +47152,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47231,13 +47231,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47321,7 +47321,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -47329,7 +47329,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47397,13 +47397,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47475,7 +47475,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47483,7 +47483,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47558,13 +47558,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47637,13 +47637,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47726,7 +47726,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -47734,7 +47734,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -47812,13 +47812,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47902,13 +47902,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47982,7 +47982,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47990,7 +47990,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48066,7 +48066,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48074,7 +48074,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48160,13 +48160,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48250,13 +48250,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48339,13 +48339,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48426,7 +48426,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48434,7 +48434,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48512,13 +48512,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48601,13 +48601,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48691,13 +48691,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48793,7 +48793,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48801,7 +48801,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -48893,13 +48893,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48990,13 +48990,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49069,7 +49069,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49077,7 +49077,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49144,13 +49144,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49221,7 +49221,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49229,7 +49229,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49305,13 +49305,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49395,7 +49395,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49403,7 +49403,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49486,13 +49486,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -49572,13 +49572,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49665,7 +49665,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -49673,7 +49673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --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 Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49823,7 +49823,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49831,7 +49831,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -49903,13 +49903,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49999,7 +49999,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50007,7 +50007,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -50083,13 +50083,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50164,13 +50164,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50236,13 +50236,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50313,13 +50313,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50393,13 +50393,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50476,13 +50476,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50585,13 +50585,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50665,13 +50665,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50747,13 +50747,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50872,13 +50872,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51108,13 +51108,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51205,13 +51205,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51319,13 +51319,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51440,13 +51440,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51513,13 +51513,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -51585,13 +51585,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51665,7 +51665,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51673,7 +51673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -51749,7 +51749,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51757,7 +51757,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -51834,7 +51834,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -51842,7 +51842,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -51915,13 +51915,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51987,13 +51987,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52066,7 +52066,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52074,7 +52074,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -52153,13 +52153,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52243,7 +52243,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52251,7 +52251,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -52336,13 +52336,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52419,13 +52419,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52508,13 +52508,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52586,13 +52586,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52668,7 +52668,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52676,7 +52676,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -52754,13 +52754,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52835,13 +52835,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52921,7 +52921,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -52929,7 +52929,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -52998,13 +52998,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53076,7 +53076,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53084,7 +53084,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -53158,13 +53158,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53234,13 +53234,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53319,7 +53319,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53327,7 +53327,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -53410,7 +53410,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53418,7 +53418,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -53487,13 +53487,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53566,7 +53566,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53574,7 +53574,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -53641,13 +53641,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53718,7 +53718,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53726,7 +53726,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -53801,13 +53801,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53883,13 +53883,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53970,7 +53970,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53978,7 +53978,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -54074,14 +54074,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ @@ -54155,13 +54155,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54240,7 +54240,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54248,7 +54248,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -54329,13 +54329,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -54410,13 +54410,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54503,7 +54503,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -54511,7 +54511,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -54585,13 +54585,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54671,7 +54671,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54679,7 +54679,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -54759,13 +54759,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -54852,7 +54852,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -54860,7 +54860,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -54925,13 +54925,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55005,7 +55005,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55013,7 +55013,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -55080,13 +55080,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55149,13 +55149,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55227,7 +55227,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55235,7 +55235,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -55309,13 +55309,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55393,13 +55393,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55473,13 +55473,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55562,7 +55562,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55570,7 +55570,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -55648,13 +55648,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -55730,13 +55730,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55812,7 +55812,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55820,7 +55820,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -55897,13 +55897,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55971,13 +55971,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56052,7 +56052,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56060,7 +56060,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -56131,13 +56131,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56209,7 +56209,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56217,7 +56217,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -56294,13 +56294,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56374,13 +56374,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56463,7 +56463,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56471,7 +56471,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -56551,13 +56551,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56644,7 +56644,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56652,7 +56652,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -56741,13 +56741,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56831,13 +56831,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56908,7 +56908,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56916,7 +56916,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -56999,13 +56999,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57103,13 +57103,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57192,13 +57192,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57265,13 +57265,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57354,13 +57354,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57435,13 +57435,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57514,7 +57514,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57522,7 +57522,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -57597,7 +57597,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57605,7 +57605,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -57680,13 +57680,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57760,13 +57760,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57848,7 +57848,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57856,7 +57856,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -57985,13 +57985,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58071,13 +58071,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58158,13 +58158,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-10-01+csv" \ -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 --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -58229,13 +58229,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58302,13 +58302,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58372,13 +58372,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58449,7 +58449,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58457,7 +58457,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -58526,13 +58526,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58603,7 +58603,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58611,7 +58611,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -58682,13 +58682,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58758,13 +58758,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58843,7 +58843,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -58851,7 +58851,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -58926,13 +58926,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59010,7 +59010,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59018,7 +59018,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -59095,13 +59095,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59168,13 +59168,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59247,7 +59247,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59255,7 +59255,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -59330,13 +59330,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59414,7 +59414,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59422,7 +59422,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -59503,13 +59503,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59587,13 +59587,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59680,7 +59680,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -59688,7 +59688,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -59773,13 +59773,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59868,7 +59868,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59876,7 +59876,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -59964,13 +59964,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60046,13 +60046,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60122,13 +60122,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60205,13 +60205,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60294,7 +60294,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60302,7 +60302,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -60380,7 +60380,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60388,7 +60388,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ @@ -60463,13 +60463,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60540,13 +60540,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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 97f6035af1..491c557ecb 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 @@ -36115,12 +36115,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36182,12 +36182,12 @@ { "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/alertConfigs/matchers/fieldNames?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36255,12 +36255,12 @@ { "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/clusters?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36328,12 +36328,12 @@ { "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/eventTypes?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36392,12 +36392,12 @@ { "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/federationSettings/{federationSettingsId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -36468,12 +36468,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36551,12 +36551,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -36632,12 +36632,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -36724,12 +36724,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -36797,12 +36797,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -36879,12 +36879,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -36962,12 +36962,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -37046,12 +37046,12 @@ { "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/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37141,12 +37141,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -37249,12 +37249,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37331,12 +37331,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -37408,12 +37408,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -37489,12 +37489,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37578,12 +37578,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -37655,12 +37655,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37725,12 +37725,12 @@ { "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/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37801,12 +37801,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] }, @@ -37897,12 +37897,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 '{ }'" } ] } @@ -37981,12 +37981,12 @@ { "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/byName/{groupName}?pretty=true\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] } @@ -38051,12 +38051,12 @@ { "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -38119,12 +38119,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38204,12 +38204,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -38290,12 +38290,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38370,12 +38370,12 @@ { "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}/accessList?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38468,12 +38468,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38553,12 +38553,12 @@ { "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}/accessList/{entryValue}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -38639,12 +38639,12 @@ { "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}/accessList/{entryValue}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -38726,12 +38726,12 @@ { "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}/accessList/{entryValue}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -38802,12 +38802,12 @@ { "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}/alertConfigs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38881,12 +38881,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38961,12 +38961,12 @@ { "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}/alertConfigs/{alertConfigId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39042,12 +39042,12 @@ { "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}/alertConfigs/{alertConfigId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39134,12 +39134,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -39229,12 +39229,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -39321,12 +39321,12 @@ { "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}/alertConfigs/{alertConfigId}/alerts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39413,12 +39413,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39495,12 +39495,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39590,12 +39590,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -39682,12 +39682,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39762,12 +39762,12 @@ { "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}/apiKeys?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39838,12 +39838,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39924,12 +39924,12 @@ { "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}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -40024,12 +40024,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -40115,12 +40115,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40182,12 +40182,12 @@ { "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}/auditLog?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40261,12 +40261,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -40328,12 +40328,12 @@ { "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}/awsCustomDNS?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40404,12 +40404,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -40481,12 +40481,12 @@ { "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}/backup/exportBuckets?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -40567,12 +40567,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -40651,12 +40651,12 @@ { "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}/backup/exportBuckets/{exportBucketId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -40730,12 +40730,12 @@ { "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}/backup/exportBuckets/{exportBucketId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -40801,12 +40801,12 @@ { "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}/backupCompliancePolicy?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40893,12 +40893,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -40960,12 +40960,12 @@ { "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}/cloudProviderAccess?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41040,12 +41040,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41131,12 +41131,12 @@ { "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}/cloudProviderAccess/{cloudProvider}/{roleId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -41210,12 +41210,12 @@ { "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}/cloudProviderAccess/{roleId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41308,12 +41308,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -41394,12 +41394,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -41484,12 +41484,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -41580,12 +41580,12 @@ { "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/provider/regions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -41670,12 +41670,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41760,12 +41760,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41853,12 +41853,12 @@ { "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}/clusters/{clusterName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41937,12 +41937,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -42036,12 +42036,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -42125,12 +42125,12 @@ { "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/exports?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -42219,12 +42219,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42304,12 +42304,12 @@ { "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/exports/{exportId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -42392,12 +42392,12 @@ { "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/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -42489,12 +42489,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42583,12 +42583,12 @@ { "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}/clusters/{clusterName}/backup/restoreJobs/{restoreJobId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -42672,12 +42672,12 @@ { "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/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -42752,12 +42752,12 @@ { "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}/clusters/{clusterName}/backup/schedule\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -42831,12 +42831,12 @@ { "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/schedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -42924,12 +42924,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -43016,12 +43016,12 @@ { "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/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43107,12 +43107,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43198,12 +43198,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/shardedCluster/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43290,12 +43290,12 @@ { "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/snapshots/shardedCluster/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43372,12 +43372,12 @@ { "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/snapshots/shardedClusters?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43466,12 +43466,12 @@ { "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}/clusters/{clusterName}/backup/snapshots/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43558,12 +43558,12 @@ { "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/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43661,12 +43661,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -43763,12 +43763,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43862,12 +43862,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43944,12 +43944,12 @@ { "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/restores?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44038,12 +44038,12 @@ { "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/restores/{restoreId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44120,12 +44120,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44214,12 +44214,12 @@ { "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/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44303,12 +44303,12 @@ { "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}/backupCheckpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44401,12 +44401,12 @@ { "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}/backupCheckpoints/{checkpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44483,12 +44483,12 @@ { "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}/collStats/pinned?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -44585,12 +44585,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -44687,12 +44687,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -44780,12 +44780,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -44881,12 +44881,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -44987,12 +44987,12 @@ { "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}/fts/indexes/{databaseName}/{collectionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -45087,12 +45087,12 @@ { "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}/clusters/{clusterName}/fts/indexes/{indexId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45182,12 +45182,12 @@ { "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}/fts/indexes/{indexId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -45294,12 +45294,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -45379,12 +45379,12 @@ { "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}/globalWrites?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -45464,12 +45464,12 @@ { "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}/clusters/{clusterName}/globalWrites/customZoneMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45561,12 +45561,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -45665,12 +45665,12 @@ { "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}/clusters/{clusterName}/globalWrites/managedNamespaces\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45765,12 +45765,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -45951,12 +45951,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46043,12 +46043,12 @@ { "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}/onlineArchives?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -46144,12 +46144,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46263,12 +46263,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -46361,12 +46361,12 @@ { "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}/clusters/{clusterName}/onlineArchives/{archiveId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -46460,12 +46460,12 @@ { "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}/onlineArchives/{archiveId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -46573,12 +46573,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -46662,12 +46662,12 @@ { "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}/clusters/{clusterName}/outageSimulation\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46749,12 +46749,12 @@ { "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}/outageSimulation?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -46844,12 +46844,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46931,12 +46931,12 @@ { "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}/processArgs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -47032,12 +47032,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -47109,12 +47109,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47212,12 +47212,12 @@ { "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}/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47304,12 +47304,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47399,12 +47399,12 @@ { "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}/restoreJobs/{jobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -47482,12 +47482,12 @@ { "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}/clusters/{clusterName}/search/deployment\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -47564,12 +47564,12 @@ { "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}/search/deployment?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -47660,12 +47660,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -47756,12 +47756,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -47837,12 +47837,12 @@ { "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}/snapshotSchedule?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47926,12 +47926,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -48029,12 +48029,12 @@ { "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}/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48124,12 +48124,12 @@ { "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}/clusters/{clusterName}/snapshots/{snapshotId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -48214,12 +48214,12 @@ { "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}/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48315,12 +48315,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -48394,12 +48394,12 @@ { "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}/status?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48493,12 +48493,12 @@ { "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}/{clusterView}/collStats/namespaces?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48645,12 +48645,12 @@ { "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}/{clusterView}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48772,12 +48772,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -48842,12 +48842,12 @@ { "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}/collStats/metrics?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -48936,12 +48936,12 @@ { "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}/containers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49024,12 +49024,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49100,12 +49100,12 @@ { "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}/containers/all?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -49189,12 +49189,12 @@ { "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}/containers/{containerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49267,12 +49267,12 @@ { "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}/containers/{containerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49368,12 +49368,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -49438,12 +49438,12 @@ { "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}/customDBRoles/roles?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49526,12 +49526,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49608,12 +49608,12 @@ { "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}/customDBRoles/roles/{roleName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49685,12 +49685,12 @@ { "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}/customDBRoles/roles/{roleName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49782,12 +49782,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -49865,12 +49865,12 @@ { "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}/dataFederation?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -49950,12 +49950,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50026,12 +50026,12 @@ { "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}/dataFederation/{tenantName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -50103,12 +50103,12 @@ { "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}/dataFederation/{tenantName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50200,12 +50200,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -50282,12 +50282,12 @@ { "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}/dataFederation/{tenantName}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50370,12 +50370,12 @@ { "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}/dataFederation/{tenantName}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -50459,12 +50459,12 @@ { "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}/dataFederation/{tenantName}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50562,12 +50562,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -50668,12 +50668,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -50744,12 +50744,12 @@ { "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}/databaseUsers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50984,12 +50984,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51076,12 +51076,12 @@ { "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}/databaseUsers/{databaseName}/{username}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51163,12 +51163,12 @@ { "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}/databaseUsers/{databaseName}/{username}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51270,12 +51270,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -51358,12 +51358,12 @@ { "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}/databaseUsers/{username}/certs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51460,12 +51460,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51593,12 +51593,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51723,12 +51723,12 @@ { "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/processes/{hostname}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51790,12 +51790,12 @@ { "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}/encryptionAtRest?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51875,12 +51875,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -51954,12 +51954,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52042,12 +52042,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52144,12 +52144,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52233,12 +52233,12 @@ { "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}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52376,12 +52376,12 @@ { "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}/events?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52467,12 +52467,12 @@ { "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}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52537,12 +52537,12 @@ { "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}/hosts/{processId}/fts/metrics?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52653,12 +52653,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52772,12 +52772,12 @@ { "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}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52883,12 +52883,12 @@ { "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}/hosts/{processId}/fts/metrics/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52965,12 +52965,12 @@ { "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}/integrations?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53060,12 +53060,12 @@ { "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}/integrations/{integrationType}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -53153,12 +53153,12 @@ { "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}/integrations/{integrationType}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53269,12 +53269,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -53382,12 +53382,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -53462,12 +53462,12 @@ { "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}/invites?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -53546,12 +53546,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -53624,12 +53624,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -53702,12 +53702,12 @@ { "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}/invites/{invitationId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -53784,12 +53784,12 @@ { "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}/invites/{invitationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -53877,12 +53877,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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" @@ -53948,12 +53948,12 @@ { "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}/ipAddresses?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54027,12 +54027,12 @@ { "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}/limits?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54124,12 +54124,12 @@ { "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}/limits/{limitName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54222,12 +54222,12 @@ { "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}/limits/{limitName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54331,12 +54331,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -54421,12 +54421,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -54512,12 +54512,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -54599,12 +54599,12 @@ { "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}/liveMigrations/validate/{validationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54675,12 +54675,12 @@ { "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}/liveMigrations/{liveMigrationId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54751,12 +54751,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -54815,12 +54815,12 @@ { "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}/maintenanceWindow\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54880,12 +54880,12 @@ { "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}/maintenanceWindow?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54956,12 +54956,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -55020,12 +55020,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55084,12 +55084,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55151,12 +55151,12 @@ { "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}/managedSlowMs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55218,12 +55218,12 @@ { "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}/managedSlowMs/disable\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55285,12 +55285,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55413,12 +55413,12 @@ { "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}/mongoDBVersions?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55506,12 +55506,12 @@ { "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}/peers?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55595,12 +55595,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55677,12 +55677,12 @@ { "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}/peers/{peerId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55757,12 +55757,12 @@ { "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}/peers/{peerId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55854,12 +55854,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -55924,12 +55924,12 @@ { "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}/pipelines?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56003,12 +56003,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56082,12 +56082,12 @@ { "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56162,12 +56162,12 @@ { "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}/pipelines/{pipelineName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56256,12 +56256,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -56341,12 +56341,12 @@ { "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}/pipelines/{pipelineName}/availableSchedules?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56442,12 +56442,12 @@ { "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}/pipelines/{pipelineName}/availableSnapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56524,12 +56524,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56606,12 +56606,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56707,12 +56707,12 @@ { "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}/pipelines/{pipelineName}/runs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56802,12 +56802,12 @@ { "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}/runs/{pipelineRunId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56895,12 +56895,12 @@ { "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}/pipelines/{pipelineName}/runs/{pipelineRunId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56988,12 +56988,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57070,12 +57070,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57140,12 +57140,12 @@ { "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}/privateEndpoint/regionalMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57219,12 +57219,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -57300,12 +57300,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57391,12 +57391,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57481,12 +57481,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -57569,12 +57569,12 @@ { "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}/privateEndpoint/serverless/instance/{instanceName}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57668,12 +57668,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -57753,12 +57753,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57847,12 +57847,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -57942,12 +57942,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58056,12 +58056,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58160,12 +58160,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58265,12 +58265,12 @@ { "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}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58337,12 +58337,12 @@ { "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}/privateIpMode?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58421,12 +58421,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -58503,12 +58503,12 @@ { "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}/privateNetworkSettings/endpointIds?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58582,12 +58582,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58664,12 +58664,12 @@ { "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}/privateNetworkSettings/endpointIds/{endpointId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58747,12 +58747,12 @@ { "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}/privateNetworkSettings/endpointIds/{endpointId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58823,12 +58823,12 @@ { "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}/processes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58901,12 +58901,12 @@ { "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}/processes/{processId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58977,12 +58977,12 @@ { "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}/processes/{processId}/collStats/namespaces?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59064,12 +59064,12 @@ { "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}/processes/{processId}/databases?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59151,12 +59151,12 @@ { "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}/processes/{processId}/databases/{databaseName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59277,12 +59277,12 @@ { "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}/processes/{processId}/databases/{databaseName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59364,12 +59364,12 @@ { "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}/processes/{processId}/disks?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59448,12 +59448,12 @@ { "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}/processes/{processId}/disks/{partitionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59583,12 +59583,12 @@ { "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}/processes/{processId}/disks/{partitionName}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59825,12 +59825,12 @@ { "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}/processes/{processId}/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59921,12 +59921,12 @@ { "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}/processes/{processId}/performanceAdvisor/namespaces?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60041,12 +60041,12 @@ { "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}/processes/{processId}/performanceAdvisor/slowQueryLogs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60177,12 +60177,12 @@ { "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}/processes/{processId}/performanceAdvisor/suggestedIndexes?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60304,12 +60304,12 @@ { "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}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60377,12 +60377,12 @@ { "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}/pushBasedLogExport\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60448,12 +60448,12 @@ { "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}/pushBasedLogExport?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60531,12 +60531,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -60614,12 +60614,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60696,12 +60696,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60772,12 +60772,12 @@ { "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}/sampleDatasetLoad/{sampleDatasetId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60848,12 +60848,12 @@ { "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}/serverless?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60930,12 +60930,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61021,12 +61021,12 @@ { "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}/serverless/{clusterName}/backup/restoreJobs?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61118,12 +61118,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61212,12 +61212,12 @@ { "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}/serverless/{clusterName}/backup/restoreJobs/{restoreJobId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61303,12 +61303,12 @@ { "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}/serverless/{clusterName}/backup/snapshots?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61395,12 +61395,12 @@ { "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}/serverless/{clusterName}/backup/snapshots/{snapshotId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61474,12 +61474,12 @@ { "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}/serverless/{clusterName}/performanceAdvisor/autoIndexing?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61557,12 +61557,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61642,12 +61642,12 @@ { "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}/serverless/{name}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -61725,12 +61725,12 @@ { "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}/serverless/{name}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61816,12 +61816,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -61892,12 +61892,12 @@ { "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}/serviceAccounts?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61972,12 +61972,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62052,12 +62052,12 @@ { "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}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -62129,12 +62129,12 @@ { "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}/serviceAccounts/{serviceAccountId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62220,12 +62220,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] }, @@ -62313,12 +62313,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62386,12 +62386,12 @@ { "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}/settings?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62468,12 +62468,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -62541,12 +62541,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62620,12 +62620,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62702,12 +62702,12 @@ { "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}/streams/{tenantName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -62787,12 +62787,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62881,12 +62881,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -62990,12 +62990,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -63075,12 +63075,12 @@ { "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63166,12 +63166,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63257,12 +63257,12 @@ { "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}/streams/{tenantName}/connections/{connectionName}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -63340,12 +63340,12 @@ { "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/{connectionName}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63443,12 +63443,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -63528,12 +63528,12 @@ { "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}/teams?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63620,12 +63620,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63706,12 +63706,12 @@ { "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}/teams/{teamId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -63807,12 +63807,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -63874,12 +63874,12 @@ { "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}/userSecurity?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63953,12 +63953,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${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 '{ }'" } ] } @@ -64017,12 +64017,12 @@ { "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}/userSecurity/customerX509\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -64084,12 +64084,12 @@ { "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}/userSecurity/ldap/userToDNMapping\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -64165,12 +64165,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64244,12 +64244,12 @@ { "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}/userSecurity/ldap/verify/{requestId}?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -64338,12 +64338,12 @@ { "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}/users?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -64420,12 +64420,12 @@ { "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}/users/{userId}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -64516,12 +64516,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -64606,12 +64606,12 @@ { "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?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -64691,12 +64691,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -64767,12 +64767,12 @@ { "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/orgs/{orgId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -64841,12 +64841,12 @@ { "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}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -64926,12 +64926,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -65006,12 +65006,12 @@ { "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}/apiKeys?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65086,12 +65086,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -65169,12 +65169,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -65250,12 +65250,12 @@ { "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}/apiKeys/{apiUserId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65345,12 +65345,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -65437,12 +65437,12 @@ { "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}/apiKeys/{apiUserId}/accessList?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -65543,12 +65543,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -65643,12 +65643,12 @@ { "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/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -65738,12 +65738,12 @@ { "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}/apiKeys/{apiUserId}/accessList/{ipAddress}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -65816,12 +65816,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -65907,12 +65907,12 @@ { "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}/billing/costExplorer/usage/{token}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66022,12 +66022,12 @@ { "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}/events?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66113,12 +66113,12 @@ { "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}/events/{eventId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66186,12 +66186,12 @@ { "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}/federationSettings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66276,12 +66276,12 @@ { "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}/groups?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -66361,12 +66361,12 @@ { "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}/invites?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -66443,12 +66443,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] }, @@ -66525,12 +66525,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -66607,12 +66607,12 @@ { "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/orgs/{orgId}/invites/{invitationId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -66687,12 +66687,12 @@ { "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}/invites/{invitationId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -66781,12 +66781,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -66939,12 +66939,12 @@ { "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}/invoices?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -67009,12 +67009,12 @@ { "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}/invoices/pending?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -67097,12 +67097,12 @@ { "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}/invoices/{invoiceId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -67178,12 +67178,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2023-11-15+csv\" \\\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+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -67251,12 +67251,12 @@ { "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}/liveMigrations/availableProjects?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -67318,12 +67318,12 @@ { "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/orgs/{orgId}/liveMigrations/linkTokens\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67397,12 +67397,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67473,12 +67473,12 @@ { "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67552,12 +67552,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67628,12 +67628,12 @@ { "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/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -67705,12 +67705,12 @@ { "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/{serviceAccountId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67796,12 +67796,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -67881,12 +67881,12 @@ { "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/{serviceAccountId}/groups?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -67971,12 +67971,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68056,12 +68056,12 @@ { "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/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -68129,12 +68129,12 @@ { "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}/settings?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68211,12 +68211,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -68297,12 +68297,12 @@ { "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}/teams?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68386,12 +68386,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68472,12 +68472,12 @@ { "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}/teams/byName/{teamName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68561,12 +68561,12 @@ { "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/orgs/{orgId}/teams/{teamId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -68648,12 +68648,12 @@ { "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}/teams/{teamId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68749,12 +68749,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${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 '{ }'" } ] } @@ -68847,12 +68847,12 @@ { "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}/teams/{teamId}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68951,12 +68951,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69049,12 +69049,12 @@ { "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/orgs/{orgId}/teams/{teamId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -69131,12 +69131,12 @@ { "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}/users?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69216,12 +69216,12 @@ { "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/orgs/{orgId}/users/{userId}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -69312,12 +69312,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -69365,12 +69365,12 @@ { "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/unauth/controlPlaneIPAddresses?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69443,12 +69443,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69520,12 +69520,12 @@ { "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/users/byName/{userName}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69599,12 +69599,12 @@ { "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/users/{userId}?pretty=true\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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 2310e97041..4284a2c3cd 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 @@ -29632,13 +29632,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29702,13 +29702,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29773,13 +29773,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29844,13 +29844,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29913,13 +29913,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -29987,13 +29987,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30069,13 +30069,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30150,13 +30150,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30238,7 +30238,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30246,7 +30246,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30315,13 +30315,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30394,7 +30394,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30402,7 +30402,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30479,13 +30479,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30561,13 +30561,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30650,7 +30650,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30658,7 +30658,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30750,13 +30750,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30833,7 +30833,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30841,7 +30841,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -30914,13 +30914,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30994,13 +30994,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31082,7 +31082,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31090,7 +31090,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31163,13 +31163,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31235,13 +31235,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31308,13 +31308,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -31398,7 +31398,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31406,7 +31406,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31473,13 +31473,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31543,13 +31543,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31624,7 +31624,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31632,7 +31632,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31709,7 +31709,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31717,7 +31717,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31788,13 +31788,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31875,7 +31875,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31883,7 +31883,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -31966,13 +31966,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32049,13 +32049,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32132,13 +32132,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32207,13 +32207,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32287,7 +32287,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32295,7 +32295,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32373,13 +32373,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32456,13 +32456,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32548,7 +32548,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32556,7 +32556,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32646,7 +32646,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32654,7 +32654,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -32737,13 +32737,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32823,13 +32823,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32906,13 +32906,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32998,7 +32998,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33006,7 +33006,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33089,13 +33089,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33164,13 +33164,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33239,7 +33239,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33247,7 +33247,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33326,13 +33326,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33415,7 +33415,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33423,7 +33423,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33505,7 +33505,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33513,7 +33513,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33578,13 +33578,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33655,7 +33655,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33663,7 +33663,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33728,13 +33728,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33803,7 +33803,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33811,7 +33811,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -33880,13 +33880,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33963,7 +33963,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33971,7 +33971,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34050,13 +34050,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34130,13 +34130,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34202,13 +34202,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34288,7 +34288,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34296,7 +34296,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34361,13 +34361,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34439,7 +34439,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34447,7 +34447,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34529,13 +34529,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34607,13 +34607,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34698,7 +34698,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -34706,7 +34706,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34781,13 +34781,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34866,7 +34866,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34874,7 +34874,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -34958,13 +34958,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35040,13 +35040,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35132,7 +35132,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35140,7 +35140,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35269,13 +35269,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35359,13 +35359,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35440,13 +35440,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35529,7 +35529,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35537,7 +35537,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35616,13 +35616,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35697,13 +35697,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35790,7 +35790,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35798,7 +35798,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -35883,13 +35883,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35969,13 +35969,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36049,13 +36049,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -36128,13 +36128,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36219,7 +36219,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36227,7 +36227,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36307,13 +36307,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36396,7 +36396,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36404,7 +36404,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36489,13 +36489,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36577,13 +36577,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36672,7 +36672,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -36680,7 +36680,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -36763,13 +36763,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36851,13 +36851,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36931,13 +36931,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37024,7 +37024,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37032,7 +37032,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37119,7 +37119,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37127,7 +37127,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37203,13 +37203,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37292,13 +37292,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37372,13 +37372,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37461,13 +37461,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37543,13 +37543,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37635,13 +37635,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37716,13 +37716,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37810,7 +37810,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37818,7 +37818,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -37908,7 +37908,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37916,7 +37916,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38000,7 +38000,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38008,7 +38008,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38097,7 +38097,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38105,7 +38105,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38198,13 +38198,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38292,13 +38292,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -38383,13 +38383,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38485,7 +38485,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -38493,7 +38493,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38572,13 +38572,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38655,13 +38655,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -38746,7 +38746,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38754,7 +38754,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -38845,13 +38845,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -38938,7 +38938,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38946,7 +38946,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39096,7 +39096,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39104,7 +39104,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39184,13 +39184,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39277,7 +39277,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39285,7 +39285,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39373,13 +39373,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39466,13 +39466,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39568,7 +39568,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -39576,7 +39576,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -39680,14 +39680,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ @@ -39767,13 +39767,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -39851,13 +39851,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39940,7 +39940,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39948,7 +39948,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40028,13 +40028,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40122,7 +40122,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40130,7 +40130,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40203,7 +40203,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40211,7 +40211,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40302,13 +40302,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40389,7 +40389,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40397,7 +40397,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40486,13 +40486,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40567,13 +40567,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -40648,13 +40648,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40738,7 +40738,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40746,7 +40746,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40832,7 +40832,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40840,7 +40840,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -40919,13 +40919,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41007,7 +41007,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41015,7 +41015,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41103,13 +41103,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41193,13 +41193,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41280,13 +41280,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41374,7 +41374,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41382,7 +41382,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41456,13 +41456,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41569,14 +41569,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ @@ -41655,13 +41655,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41739,7 +41739,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41747,7 +41747,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41827,7 +41827,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41835,7 +41835,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -41903,13 +41903,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41988,13 +41988,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42071,7 +42071,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42079,7 +42079,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42160,13 +42160,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42238,13 +42238,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42331,7 +42331,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42339,7 +42339,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42407,13 +42407,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42478,13 +42478,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42561,7 +42561,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42569,7 +42569,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42644,13 +42644,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42720,13 +42720,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42809,7 +42809,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42817,7 +42817,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -42893,13 +42893,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42974,7 +42974,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42982,7 +42982,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43053,13 +43053,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -43130,13 +43130,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43219,7 +43219,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -43227,7 +43227,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43302,13 +43302,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43395,13 +43395,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -43488,13 +43488,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43591,7 +43591,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -43599,7 +43599,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -43694,14 +43694,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ @@ -43768,13 +43768,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43942,7 +43942,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43950,7 +43950,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44045,13 +44045,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44141,13 +44141,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44250,7 +44250,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44258,7 +44258,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44334,13 +44334,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44432,7 +44432,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44440,7 +44440,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44551,13 +44551,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44663,13 +44663,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44735,13 +44735,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44828,7 +44828,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44836,7 +44836,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -44909,13 +44909,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44992,7 +44992,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45000,7 +45000,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -45089,13 +45089,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45174,13 +45174,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45300,13 +45300,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45389,13 +45389,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45460,13 +45460,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45561,13 +45561,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45661,13 +45661,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45760,13 +45760,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45836,13 +45836,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45927,13 +45927,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46017,13 +46017,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46119,7 +46119,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46127,7 +46127,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46223,7 +46223,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46231,7 +46231,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46305,13 +46305,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46386,7 +46386,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46394,7 +46394,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46467,7 +46467,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46475,7 +46475,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46550,13 +46550,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46631,13 +46631,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46720,7 +46720,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46728,7 +46728,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -46796,13 +46796,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46873,13 +46873,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46982,13 +46982,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47092,13 +47092,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47212,7 +47212,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -47220,7 +47220,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47308,7 +47308,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47316,7 +47316,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47387,13 +47387,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47461,7 +47461,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47469,7 +47469,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47550,7 +47550,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47558,7 +47558,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47639,13 +47639,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47707,13 +47707,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -47775,13 +47775,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47851,7 +47851,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47859,7 +47859,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47923,7 +47923,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47931,7 +47931,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -47995,7 +47995,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48003,7 +48003,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48068,13 +48068,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48137,13 +48137,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -48206,7 +48206,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48214,7 +48214,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48320,13 +48320,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48404,13 +48404,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48488,7 +48488,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48496,7 +48496,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48572,13 +48572,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48651,13 +48651,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48741,7 +48741,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48749,7 +48749,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48817,13 +48817,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48895,7 +48895,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48903,7 +48903,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -48978,13 +48978,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -49057,13 +49057,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49146,7 +49146,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -49154,7 +49154,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49232,13 +49232,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49322,13 +49322,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49402,7 +49402,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49410,7 +49410,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49486,7 +49486,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49494,7 +49494,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49580,13 +49580,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49670,13 +49670,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -49759,13 +49759,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49846,7 +49846,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49854,7 +49854,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -49932,13 +49932,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50021,13 +50021,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50111,13 +50111,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50213,7 +50213,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50221,7 +50221,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50313,13 +50313,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50410,13 +50410,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50489,7 +50489,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50497,7 +50497,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50564,13 +50564,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50641,7 +50641,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50649,7 +50649,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50725,13 +50725,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50815,7 +50815,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50823,7 +50823,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -50906,13 +50906,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50992,13 +50992,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51085,7 +51085,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -51093,7 +51093,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51162,13 +51162,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51243,7 +51243,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51251,7 +51251,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51323,13 +51323,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51419,7 +51419,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51427,7 +51427,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -51503,13 +51503,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51584,13 +51584,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51656,13 +51656,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51733,13 +51733,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51845,13 +51845,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51917,13 +51917,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51997,13 +51997,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52080,13 +52080,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52189,13 +52189,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52269,13 +52269,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52351,13 +52351,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52476,13 +52476,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52712,13 +52712,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52809,13 +52809,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52923,13 +52923,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53044,13 +53044,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53117,13 +53117,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -53189,13 +53189,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53269,7 +53269,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53277,7 +53277,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -53353,7 +53353,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53361,7 +53361,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -53438,7 +53438,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53446,7 +53446,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -53519,13 +53519,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53591,13 +53591,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53670,7 +53670,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53678,7 +53678,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -53757,13 +53757,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53847,7 +53847,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53855,7 +53855,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -53940,13 +53940,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54023,13 +54023,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54112,13 +54112,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54190,13 +54190,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54272,7 +54272,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54280,7 +54280,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -54358,13 +54358,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -54439,13 +54439,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54525,7 +54525,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -54533,7 +54533,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -54602,13 +54602,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54680,7 +54680,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54688,7 +54688,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -54762,13 +54762,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -54838,13 +54838,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54923,7 +54923,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -54931,7 +54931,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -55014,7 +55014,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55022,7 +55022,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -55091,13 +55091,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55170,7 +55170,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55178,7 +55178,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -55245,13 +55245,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55322,7 +55322,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55330,7 +55330,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -55405,13 +55405,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55487,13 +55487,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55574,7 +55574,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55582,7 +55582,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -55678,14 +55678,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ @@ -55759,13 +55759,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55844,7 +55844,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55852,7 +55852,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -55933,13 +55933,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56014,13 +56014,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56107,7 +56107,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56115,7 +56115,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -56189,13 +56189,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56275,7 +56275,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56283,7 +56283,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -56363,13 +56363,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56456,7 +56456,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56464,7 +56464,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -56529,13 +56529,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56609,7 +56609,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56617,7 +56617,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -56684,13 +56684,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56753,13 +56753,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -56831,7 +56831,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56839,7 +56839,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -56913,13 +56913,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56997,13 +56997,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57077,13 +57077,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57166,7 +57166,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57174,7 +57174,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -57252,13 +57252,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -57334,13 +57334,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57416,7 +57416,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57424,7 +57424,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -57501,13 +57501,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57575,13 +57575,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57656,7 +57656,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57664,7 +57664,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -57735,13 +57735,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -57813,7 +57813,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57821,7 +57821,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -57898,13 +57898,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57978,13 +57978,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58067,7 +58067,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -58075,7 +58075,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -58155,13 +58155,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58248,7 +58248,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58256,7 +58256,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -58345,13 +58345,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58435,13 +58435,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58512,7 +58512,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58520,7 +58520,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -58603,13 +58603,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58707,13 +58707,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58796,13 +58796,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58869,13 +58869,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58958,13 +58958,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59039,13 +59039,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59118,7 +59118,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59126,7 +59126,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -59201,7 +59201,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59209,7 +59209,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -59284,13 +59284,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59364,13 +59364,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59452,7 +59452,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -59460,7 +59460,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -59589,13 +59589,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59675,13 +59675,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59762,13 +59762,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2023-11-15+csv" \ -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 --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -59833,13 +59833,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59906,13 +59906,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59976,13 +59976,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60053,7 +60053,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60061,7 +60061,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -60130,13 +60130,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60207,7 +60207,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60215,7 +60215,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -60286,13 +60286,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60362,13 +60362,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60447,7 +60447,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -60455,7 +60455,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -60530,13 +60530,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60614,7 +60614,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60622,7 +60622,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -60699,13 +60699,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60772,13 +60772,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60851,7 +60851,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60859,7 +60859,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -60934,13 +60934,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61018,7 +61018,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61026,7 +61026,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -61107,13 +61107,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -61191,13 +61191,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61284,7 +61284,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -61292,7 +61292,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -61377,13 +61377,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61472,7 +61472,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61480,7 +61480,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -61568,13 +61568,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -61650,13 +61650,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61726,13 +61726,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61809,13 +61809,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -61898,7 +61898,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61906,7 +61906,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -61965,13 +61965,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62047,7 +62047,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62055,7 +62055,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ @@ -62130,13 +62130,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62207,13 +62207,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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 7e01b0d909..4524ef7771 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 @@ -36470,12 +36470,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36537,12 +36537,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36610,12 +36610,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36683,12 +36683,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36747,12 +36747,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -36823,12 +36823,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36906,12 +36906,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -36987,12 +36987,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37079,12 +37079,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -37152,12 +37152,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37234,12 +37234,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -37317,12 +37317,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -37401,12 +37401,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37496,12 +37496,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -37604,12 +37604,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37686,12 +37686,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -37763,12 +37763,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -37844,12 +37844,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37933,12 +37933,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -38010,12 +38010,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -38080,12 +38080,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -38156,12 +38156,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] }, @@ -38252,12 +38252,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 '{ }'" } ] } @@ -38336,12 +38336,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] } @@ -38406,12 +38406,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -38474,12 +38474,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38559,12 +38559,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38645,12 +38645,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38725,12 +38725,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38823,12 +38823,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38908,12 +38908,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -38994,12 +38994,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39081,12 +39081,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39157,12 +39157,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39236,12 +39236,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39316,12 +39316,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39397,12 +39397,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39489,12 +39489,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -39584,12 +39584,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -39676,12 +39676,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39768,12 +39768,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39850,12 +39850,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39944,12 +39944,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40035,12 +40035,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40115,12 +40115,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40191,12 +40191,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40277,12 +40277,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -40377,12 +40377,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -40468,12 +40468,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40535,12 +40535,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40614,12 +40614,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40681,12 +40681,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40757,12 +40757,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40833,12 +40833,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40970,12 +40970,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41053,12 +41053,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41165,12 +41165,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -41235,12 +41235,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41327,12 +41327,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -41394,12 +41394,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41474,12 +41474,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41565,12 +41565,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -41644,12 +41644,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41742,12 +41742,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41828,12 +41828,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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" @@ -41918,12 +41918,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -42014,12 +42014,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42104,12 +42104,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42194,12 +42194,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42287,12 +42287,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -42371,12 +42371,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -42470,12 +42470,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -42559,12 +42559,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -42653,12 +42653,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42738,12 +42738,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -42826,12 +42826,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -42923,12 +42923,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43017,12 +43017,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43106,12 +43106,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43186,12 +43186,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -43265,12 +43265,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -43358,12 +43358,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -43450,12 +43450,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43541,12 +43541,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43632,12 +43632,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43724,12 +43724,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43806,12 +43806,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43900,12 +43900,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43992,12 +43992,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -44095,12 +44095,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44197,12 +44197,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44296,12 +44296,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44378,12 +44378,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44472,12 +44472,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44554,12 +44554,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44648,12 +44648,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44737,12 +44737,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44835,12 +44835,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44917,12 +44917,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -45019,12 +45019,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -45121,12 +45121,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -45214,12 +45214,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45315,12 +45315,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -45421,12 +45421,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -45521,12 +45521,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45616,12 +45616,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -45728,12 +45728,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -45813,12 +45813,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -45898,12 +45898,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45995,12 +45995,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -46099,12 +46099,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -46199,12 +46199,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -46385,12 +46385,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46477,12 +46477,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -46578,12 +46578,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46697,12 +46697,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -46795,12 +46795,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -46894,12 +46894,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47007,12 +47007,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47096,12 +47096,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47183,12 +47183,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47278,12 +47278,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47365,12 +47365,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -47466,12 +47466,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -47543,12 +47543,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47646,12 +47646,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47738,12 +47738,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47833,12 +47833,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -47918,12 +47918,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47998,12 +47998,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48092,12 +48092,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -48186,12 +48186,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48285,12 +48285,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48383,12 +48383,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48500,12 +48500,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48613,12 +48613,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -48724,12 +48724,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48849,12 +48849,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48947,12 +48947,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49053,12 +49053,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49163,12 +49163,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49243,12 +49243,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49332,12 +49332,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49435,12 +49435,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -49530,12 +49530,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49620,12 +49620,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49721,12 +49721,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49800,12 +49800,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -49899,12 +49899,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50051,12 +50051,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50150,12 +50150,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50241,12 +50241,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50368,12 +50368,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -50438,12 +50438,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50532,12 +50532,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50620,12 +50620,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50696,12 +50696,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50785,12 +50785,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -50863,12 +50863,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50964,12 +50964,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51034,12 +51034,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51122,12 +51122,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51204,12 +51204,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51281,12 +51281,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51378,12 +51378,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51461,12 +51461,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51546,12 +51546,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51622,12 +51622,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51699,12 +51699,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51796,12 +51796,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51878,12 +51878,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51966,12 +51966,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52055,12 +52055,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52158,12 +52158,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52264,12 +52264,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -52340,12 +52340,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52580,12 +52580,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52672,12 +52672,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52759,12 +52759,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52866,12 +52866,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52954,12 +52954,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53056,12 +53056,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53189,12 +53189,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53319,12 +53319,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53386,12 +53386,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53471,12 +53471,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53550,12 +53550,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53638,12 +53638,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53740,12 +53740,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -53829,12 +53829,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53972,12 +53972,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54063,12 +54063,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54133,12 +54133,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54249,12 +54249,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54368,12 +54368,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54479,12 +54479,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54561,12 +54561,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54656,12 +54656,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54749,12 +54749,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54865,12 +54865,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -54978,12 +54978,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -55058,12 +55058,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -55142,12 +55142,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -55220,12 +55220,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -55298,12 +55298,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -55380,12 +55380,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -55473,12 +55473,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -55544,12 +55544,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55623,12 +55623,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55720,12 +55720,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55818,12 +55818,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55927,12 +55927,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56015,12 +56015,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56103,12 +56103,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56189,12 +56189,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56265,12 +56265,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56341,12 +56341,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -56405,12 +56405,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56470,12 +56470,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56546,12 +56546,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56610,12 +56610,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56674,12 +56674,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56741,12 +56741,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56808,12 +56808,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56875,12 +56875,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57003,12 +57003,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57096,12 +57096,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57185,12 +57185,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57267,12 +57267,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -57347,12 +57347,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57444,12 +57444,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57514,12 +57514,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57593,12 +57593,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57672,12 +57672,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -57752,12 +57752,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57846,12 +57846,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57931,12 +57931,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58032,12 +58032,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58114,12 +58114,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58196,12 +58196,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58297,12 +58297,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58392,12 +58392,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58485,12 +58485,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58578,12 +58578,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58660,12 +58660,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58730,12 +58730,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58809,12 +58809,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58890,12 +58890,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58981,12 +58981,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59071,12 +59071,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59159,12 +59159,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59258,12 +59258,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59343,12 +59343,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59437,12 +59437,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59532,12 +59532,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59646,12 +59646,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59750,12 +59750,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59855,12 +59855,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59927,12 +59927,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60011,12 +60011,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60093,12 +60093,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60172,12 +60172,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60254,12 +60254,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60337,12 +60337,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60413,12 +60413,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60491,12 +60491,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60567,12 +60567,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60654,12 +60654,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60741,12 +60741,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60867,12 +60867,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60954,12 +60954,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61038,12 +61038,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61173,12 +61173,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61415,12 +61415,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61511,12 +61511,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61631,12 +61631,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61767,12 +61767,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61894,12 +61894,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61967,12 +61967,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62038,12 +62038,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62121,12 +62121,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -62204,12 +62204,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62286,12 +62286,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62362,12 +62362,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62438,12 +62438,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62520,12 +62520,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62611,12 +62611,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62708,12 +62708,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62802,12 +62802,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62893,12 +62893,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62985,12 +62985,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63064,12 +63064,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63147,12 +63147,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63232,12 +63232,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -63315,12 +63315,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63406,12 +63406,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63482,12 +63482,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63562,12 +63562,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63642,12 +63642,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -63719,12 +63719,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63810,12 +63810,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -63903,12 +63903,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63976,12 +63976,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64058,12 +64058,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64131,12 +64131,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64210,12 +64210,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64292,12 +64292,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -64377,12 +64377,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64471,12 +64471,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64580,12 +64580,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -64665,12 +64665,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64756,12 +64756,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64847,12 +64847,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -64930,12 +64930,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65033,12 +65033,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65126,12 +65126,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65214,12 +65214,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -65303,12 +65303,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -65394,12 +65394,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65485,12 +65485,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65576,12 +65576,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -65661,12 +65661,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65753,12 +65753,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65839,12 +65839,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -65940,12 +65940,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66007,12 +66007,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -66086,12 +66086,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66150,12 +66150,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66217,12 +66217,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66298,12 +66298,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66377,12 +66377,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66471,12 +66471,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66553,12 +66553,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -66649,12 +66649,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -66724,12 +66724,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66814,12 +66814,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -66899,12 +66899,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -66975,12 +66975,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -67049,12 +67049,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67134,12 +67134,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67214,12 +67214,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67294,12 +67294,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67377,12 +67377,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -67458,12 +67458,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67553,12 +67553,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67645,12 +67645,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67751,12 +67751,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67851,12 +67851,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -67946,12 +67946,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68024,12 +68024,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68115,12 +68115,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68230,12 +68230,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68321,12 +68321,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68394,12 +68394,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68484,12 +68484,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68569,12 +68569,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68651,12 +68651,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] }, @@ -68733,12 +68733,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68815,12 +68815,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -68895,12 +68895,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68989,12 +68989,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69147,12 +69147,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69217,12 +69217,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69305,12 +69305,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69386,12 +69386,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-05-30+csv\" \\\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+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -69459,12 +69459,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69526,12 +69526,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -69605,12 +69605,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69681,12 +69681,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -69760,12 +69760,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69836,12 +69836,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -69913,12 +69913,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70004,12 +70004,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70089,12 +70089,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70179,12 +70179,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70264,12 +70264,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -70337,12 +70337,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70419,12 +70419,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70505,12 +70505,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70594,12 +70594,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70680,12 +70680,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70769,12 +70769,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -70856,12 +70856,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70957,12 +70957,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71055,12 +71055,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -71159,12 +71159,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71257,12 +71257,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -71339,12 +71339,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -71424,12 +71424,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -71520,12 +71520,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -71573,12 +71573,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -71651,12 +71651,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71728,12 +71728,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -71807,12 +71807,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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 e260973e9f..906499b8e1 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 @@ -29899,13 +29899,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -29969,13 +29969,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30040,13 +30040,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30111,13 +30111,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30180,13 +30180,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30254,13 +30254,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30336,13 +30336,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30417,13 +30417,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30505,7 +30505,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30513,7 +30513,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -30582,13 +30582,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30661,7 +30661,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30669,7 +30669,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -30746,13 +30746,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30828,13 +30828,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30917,7 +30917,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30925,7 +30925,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31017,13 +31017,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31100,7 +31100,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31108,7 +31108,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31181,13 +31181,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31261,13 +31261,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31349,7 +31349,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31357,7 +31357,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31430,13 +31430,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31502,13 +31502,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31575,13 +31575,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -31665,7 +31665,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31673,7 +31673,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31740,13 +31740,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31810,13 +31810,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -31891,7 +31891,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31899,7 +31899,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -31976,7 +31976,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31984,7 +31984,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32055,13 +32055,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32142,7 +32142,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32150,7 +32150,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32233,13 +32233,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32316,13 +32316,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32399,13 +32399,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32474,13 +32474,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32554,7 +32554,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32562,7 +32562,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32640,13 +32640,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32723,13 +32723,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32815,7 +32815,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32823,7 +32823,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -32913,7 +32913,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32921,7 +32921,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33004,13 +33004,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33090,13 +33090,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33173,13 +33173,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33264,7 +33264,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33272,7 +33272,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33354,13 +33354,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33429,13 +33429,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33504,7 +33504,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33512,7 +33512,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33591,13 +33591,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33680,7 +33680,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33688,7 +33688,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33770,7 +33770,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33778,7 +33778,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33843,13 +33843,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33920,7 +33920,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33928,7 +33928,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -33993,13 +33993,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34068,7 +34068,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34076,7 +34076,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34144,13 +34144,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34262,7 +34262,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34270,7 +34270,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34348,13 +34348,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34450,13 +34450,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34521,13 +34521,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34607,7 +34607,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34615,7 +34615,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34680,13 +34680,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34758,7 +34758,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34766,7 +34766,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -34848,13 +34848,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34926,13 +34926,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35017,7 +35017,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35025,7 +35025,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35100,13 +35100,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35185,7 +35185,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35193,7 +35193,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35277,13 +35277,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35359,13 +35359,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35451,7 +35451,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35459,7 +35459,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35588,13 +35588,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35678,13 +35678,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35759,13 +35759,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35848,7 +35848,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35856,7 +35856,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -35935,13 +35935,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36016,13 +36016,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36109,7 +36109,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36117,7 +36117,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36202,13 +36202,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36288,13 +36288,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36368,13 +36368,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -36447,13 +36447,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36538,7 +36538,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36546,7 +36546,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36626,13 +36626,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36715,7 +36715,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36723,7 +36723,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -36808,13 +36808,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36896,13 +36896,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36991,7 +36991,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -36999,7 +36999,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37082,13 +37082,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37170,13 +37170,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37250,13 +37250,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37343,7 +37343,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37351,7 +37351,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37438,7 +37438,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37446,7 +37446,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -37522,13 +37522,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37611,13 +37611,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37691,13 +37691,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37780,13 +37780,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37862,13 +37862,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37954,13 +37954,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38035,13 +38035,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38129,7 +38129,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38137,7 +38137,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38227,7 +38227,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38235,7 +38235,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38319,7 +38319,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38327,7 +38327,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38416,7 +38416,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38424,7 +38424,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38517,13 +38517,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38611,13 +38611,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -38702,13 +38702,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38804,7 +38804,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -38812,7 +38812,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -38891,13 +38891,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38974,13 +38974,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -39065,7 +39065,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39073,7 +39073,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39164,13 +39164,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -39257,7 +39257,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39265,7 +39265,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39415,7 +39415,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39423,7 +39423,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39503,13 +39503,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39596,7 +39596,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39604,7 +39604,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39692,13 +39692,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39785,13 +39785,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39887,7 +39887,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -39895,7 +39895,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -39999,14 +39999,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ @@ -40086,13 +40086,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -40170,13 +40170,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40259,7 +40259,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40267,7 +40267,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40347,13 +40347,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40441,7 +40441,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40449,7 +40449,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40522,7 +40522,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40530,7 +40530,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40621,13 +40621,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40708,7 +40708,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40716,7 +40716,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -40805,13 +40805,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40887,13 +40887,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -40966,13 +40966,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41054,7 +41054,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41062,7 +41062,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -41146,7 +41146,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41154,7 +41154,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -41241,13 +41241,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41332,7 +41332,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41340,7 +41340,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -41439,13 +41439,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41540,13 +41540,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41640,13 +41640,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41749,7 +41749,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -41757,7 +41757,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -41845,13 +41845,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -41942,13 +41942,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42042,7 +42042,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42050,7 +42050,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42128,13 +42128,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42216,7 +42216,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42224,7 +42224,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42312,13 +42312,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42402,13 +42402,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42489,13 +42489,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42583,7 +42583,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42591,7 +42591,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42665,13 +42665,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42756,7 +42756,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42764,7 +42764,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42846,7 +42846,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42854,7 +42854,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -42963,14 +42963,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ @@ -43049,13 +43049,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43133,7 +43133,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43141,7 +43141,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43221,7 +43221,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43229,7 +43229,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43297,13 +43297,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43382,13 +43382,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43465,7 +43465,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43473,7 +43473,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43554,13 +43554,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -43632,13 +43632,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43725,7 +43725,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -43733,7 +43733,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -43801,13 +43801,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43872,13 +43872,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43955,7 +43955,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43963,7 +43963,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44038,13 +44038,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44114,13 +44114,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44203,7 +44203,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44211,7 +44211,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44287,13 +44287,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44368,7 +44368,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44376,7 +44376,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44447,13 +44447,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44524,13 +44524,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44613,7 +44613,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44621,7 +44621,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -44696,13 +44696,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44789,13 +44789,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44882,13 +44882,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44985,7 +44985,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44993,7 +44993,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45088,14 +45088,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ @@ -45162,13 +45162,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45336,7 +45336,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45344,7 +45344,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45439,13 +45439,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45535,13 +45535,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45644,7 +45644,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45652,7 +45652,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45728,13 +45728,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45826,7 +45826,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45834,7 +45834,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -45945,13 +45945,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46057,13 +46057,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46129,13 +46129,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46222,7 +46222,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46230,7 +46230,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -46303,13 +46303,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46386,7 +46386,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46394,7 +46394,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -46483,13 +46483,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46568,13 +46568,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46694,13 +46694,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46783,13 +46783,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46854,13 +46854,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46955,13 +46955,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47055,13 +47055,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47154,13 +47154,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47230,13 +47230,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47321,13 +47321,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47411,13 +47411,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47513,7 +47513,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -47521,7 +47521,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47617,7 +47617,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -47625,7 +47625,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47699,13 +47699,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47780,7 +47780,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47788,7 +47788,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47861,7 +47861,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47869,7 +47869,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -47944,13 +47944,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48025,13 +48025,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48114,7 +48114,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48122,7 +48122,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48190,13 +48190,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48267,13 +48267,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48376,13 +48376,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48486,13 +48486,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48606,7 +48606,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48614,7 +48614,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48700,7 +48700,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48708,7 +48708,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48778,13 +48778,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48852,7 +48852,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48860,7 +48860,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -48939,7 +48939,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48947,7 +48947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49027,13 +49027,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49095,13 +49095,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -49163,13 +49163,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49239,7 +49239,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49247,7 +49247,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49311,7 +49311,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49319,7 +49319,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49383,7 +49383,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49391,7 +49391,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49456,13 +49456,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49525,13 +49525,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -49594,7 +49594,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49602,7 +49602,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49708,13 +49708,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49792,13 +49792,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49876,7 +49876,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49884,7 +49884,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -49960,13 +49960,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50039,13 +50039,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50129,7 +50129,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -50137,7 +50137,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50205,13 +50205,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50283,7 +50283,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50291,7 +50291,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50366,13 +50366,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50445,13 +50445,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50534,7 +50534,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -50542,7 +50542,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50620,13 +50620,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50710,13 +50710,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50790,7 +50790,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50798,7 +50798,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50874,7 +50874,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50882,7 +50882,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -50968,13 +50968,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51058,13 +51058,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51147,13 +51147,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51234,7 +51234,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51242,7 +51242,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -51320,13 +51320,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51409,13 +51409,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51499,13 +51499,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51601,7 +51601,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51609,7 +51609,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -51701,13 +51701,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51798,13 +51798,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51877,7 +51877,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51885,7 +51885,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -51952,13 +51952,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52029,7 +52029,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52037,7 +52037,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52113,13 +52113,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52203,7 +52203,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52211,7 +52211,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52294,13 +52294,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52380,13 +52380,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52473,7 +52473,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -52481,7 +52481,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52550,13 +52550,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52631,7 +52631,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52639,7 +52639,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52711,13 +52711,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52807,7 +52807,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52815,7 +52815,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -52891,13 +52891,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52972,13 +52972,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53044,13 +53044,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53121,13 +53121,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53233,13 +53233,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53305,13 +53305,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53385,13 +53385,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53468,13 +53468,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53577,13 +53577,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53657,13 +53657,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53739,13 +53739,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53864,13 +53864,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54100,13 +54100,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54197,13 +54197,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54311,13 +54311,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54432,13 +54432,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54505,13 +54505,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54577,13 +54577,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54657,7 +54657,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54665,7 +54665,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -54741,7 +54741,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -54749,7 +54749,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -54826,7 +54826,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -54834,7 +54834,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -54907,13 +54907,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54979,13 +54979,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55058,7 +55058,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55066,7 +55066,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -55145,13 +55145,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55235,7 +55235,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55243,7 +55243,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -55328,13 +55328,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55411,13 +55411,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55500,13 +55500,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55578,13 +55578,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55660,7 +55660,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55668,7 +55668,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -55746,13 +55746,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -55827,13 +55827,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55913,7 +55913,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55921,7 +55921,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -55990,13 +55990,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56068,7 +56068,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56076,7 +56076,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -56150,13 +56150,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56226,13 +56226,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56311,7 +56311,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56319,7 +56319,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -56402,7 +56402,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56410,7 +56410,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -56479,13 +56479,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56558,7 +56558,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56566,7 +56566,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -56633,13 +56633,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56710,7 +56710,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56718,7 +56718,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -56793,13 +56793,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56875,13 +56875,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56962,7 +56962,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56970,7 +56970,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -57066,14 +57066,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ @@ -57147,13 +57147,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57232,7 +57232,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57240,7 +57240,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -57321,13 +57321,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57402,13 +57402,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57495,7 +57495,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57503,7 +57503,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -57585,7 +57585,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57593,7 +57593,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -57672,13 +57672,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57756,13 +57756,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57841,7 +57841,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57849,7 +57849,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -57930,7 +57930,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57938,7 +57938,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -58016,13 +58016,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58094,13 +58094,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58180,7 +58180,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58188,7 +58188,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -58268,13 +58268,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58361,7 +58361,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -58369,7 +58369,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -58434,13 +58434,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58514,7 +58514,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58522,7 +58522,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -58589,13 +58589,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58658,13 +58658,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -58736,7 +58736,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58744,7 +58744,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -58818,13 +58818,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58902,13 +58902,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58982,13 +58982,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59071,7 +59071,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59079,7 +59079,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -59150,7 +59150,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59158,7 +59158,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -59236,13 +59236,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -59318,13 +59318,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59400,7 +59400,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59408,7 +59408,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -59485,13 +59485,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59559,13 +59559,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59640,7 +59640,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -59648,7 +59648,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -59719,13 +59719,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59797,7 +59797,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59805,7 +59805,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -59882,13 +59882,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59962,13 +59962,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60051,7 +60051,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -60059,7 +60059,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -60139,13 +60139,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60232,7 +60232,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60240,7 +60240,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -60329,13 +60329,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60419,13 +60419,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60496,7 +60496,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60504,7 +60504,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -60587,13 +60587,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60691,13 +60691,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60780,13 +60780,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60853,13 +60853,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60942,13 +60942,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61023,13 +61023,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61102,7 +61102,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61110,7 +61110,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -61185,7 +61185,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61193,7 +61193,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -61268,13 +61268,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -61348,13 +61348,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61436,7 +61436,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -61444,7 +61444,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -61573,13 +61573,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61659,13 +61659,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61746,13 +61746,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-05-30+csv" \ -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 --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -61817,13 +61817,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61890,13 +61890,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61960,13 +61960,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62037,7 +62037,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62045,7 +62045,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -62114,13 +62114,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62191,7 +62191,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62199,7 +62199,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -62270,13 +62270,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -62346,13 +62346,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62431,7 +62431,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -62439,7 +62439,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -62514,13 +62514,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62598,7 +62598,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62606,7 +62606,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -62683,13 +62683,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -62756,13 +62756,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62835,7 +62835,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62843,7 +62843,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -62918,13 +62918,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63002,7 +63002,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63010,7 +63010,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -63091,13 +63091,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -63175,13 +63175,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63268,7 +63268,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -63276,7 +63276,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -63361,13 +63361,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63456,7 +63456,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63464,7 +63464,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -63552,13 +63552,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -63634,13 +63634,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63710,13 +63710,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63793,13 +63793,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -63882,7 +63882,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63890,7 +63890,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -63949,13 +63949,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64031,7 +64031,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -64039,7 +64039,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ @@ -64114,13 +64114,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64191,13 +64191,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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 8926814274..21634531c3 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 @@ -36811,12 +36811,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36878,12 +36878,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -36951,12 +36951,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37024,12 +37024,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37088,12 +37088,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -37164,12 +37164,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37247,12 +37247,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -37328,12 +37328,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37420,12 +37420,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -37493,12 +37493,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37575,12 +37575,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -37658,12 +37658,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -37742,12 +37742,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37837,12 +37837,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -37945,12 +37945,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -38027,12 +38027,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -38104,12 +38104,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -38185,12 +38185,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -38274,12 +38274,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -38351,12 +38351,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -38421,12 +38421,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -38497,12 +38497,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] }, @@ -38593,12 +38593,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 '{ }'" } ] } @@ -38677,12 +38677,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] } @@ -38747,12 +38747,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -38815,12 +38815,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -38900,12 +38900,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38986,12 +38986,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39066,12 +39066,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39164,12 +39164,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39249,12 +39249,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39335,12 +39335,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39422,12 +39422,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39498,12 +39498,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39577,12 +39577,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39657,12 +39657,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39738,12 +39738,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39830,12 +39830,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -39925,12 +39925,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -40017,12 +40017,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40109,12 +40109,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40191,12 +40191,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40285,12 +40285,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40376,12 +40376,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40456,12 +40456,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40532,12 +40532,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40618,12 +40618,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -40718,12 +40718,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -40809,12 +40809,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40876,12 +40876,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40955,12 +40955,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41022,12 +41022,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41098,12 +41098,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41174,12 +41174,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41311,12 +41311,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41394,12 +41394,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41506,12 +41506,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -41576,12 +41576,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41668,12 +41668,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -41735,12 +41735,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41815,12 +41815,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41906,12 +41906,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -41985,12 +41985,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -42083,12 +42083,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42168,12 +42168,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -42263,12 +42263,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42358,12 +42358,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42448,12 +42448,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42538,12 +42538,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42631,12 +42631,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -42714,12 +42714,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -42812,12 +42812,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42900,12 +42900,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -42994,12 +42994,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43079,12 +43079,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43167,12 +43167,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43264,12 +43264,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43358,12 +43358,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43447,12 +43447,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43526,12 +43526,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -43603,12 +43603,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43694,12 +43694,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43785,12 +43785,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43876,12 +43876,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43967,12 +43967,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -44059,12 +44059,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44141,12 +44141,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44235,12 +44235,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -44327,12 +44327,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -44430,12 +44430,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44532,12 +44532,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44631,12 +44631,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44713,12 +44713,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44807,12 +44807,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44889,12 +44889,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44983,12 +44983,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45072,12 +45072,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45170,12 +45170,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45252,12 +45252,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -45354,12 +45354,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -45456,12 +45456,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -45549,12 +45549,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45650,12 +45650,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -45756,12 +45756,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -45856,12 +45856,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -45951,12 +45951,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -46063,12 +46063,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -46147,12 +46147,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -46230,12 +46230,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46326,12 +46326,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46428,12 +46428,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46527,12 +46527,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46712,12 +46712,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46804,12 +46804,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -46905,12 +46905,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47024,12 +47024,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -47122,12 +47122,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47221,12 +47221,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47334,12 +47334,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47423,12 +47423,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47510,12 +47510,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47605,12 +47605,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47691,12 +47691,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47790,12 +47790,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47866,12 +47866,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47969,12 +47969,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48061,12 +48061,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48156,12 +48156,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48241,12 +48241,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48321,12 +48321,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48415,12 +48415,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -48509,12 +48509,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48608,12 +48608,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48706,12 +48706,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48823,12 +48823,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48936,12 +48936,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49047,12 +49047,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49172,12 +49172,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49270,12 +49270,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49376,12 +49376,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49486,12 +49486,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49566,12 +49566,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49655,12 +49655,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49758,12 +49758,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -49853,12 +49853,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49943,12 +49943,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -50044,12 +50044,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50123,12 +50123,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50222,12 +50222,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50374,12 +50374,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50473,12 +50473,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50564,12 +50564,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50691,12 +50691,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -50761,12 +50761,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -50855,12 +50855,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -50943,12 +50943,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51019,12 +51019,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51108,12 +51108,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51186,12 +51186,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51287,12 +51287,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51357,12 +51357,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51445,12 +51445,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51527,12 +51527,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51604,12 +51604,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51701,12 +51701,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51784,12 +51784,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51869,12 +51869,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51945,12 +51945,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52022,12 +52022,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52119,12 +52119,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52201,12 +52201,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52289,12 +52289,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52378,12 +52378,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52481,12 +52481,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52587,12 +52587,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -52663,12 +52663,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52903,12 +52903,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52995,12 +52995,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -53082,12 +53082,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53189,12 +53189,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53277,12 +53277,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53379,12 +53379,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53512,12 +53512,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53642,12 +53642,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -53709,12 +53709,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53794,12 +53794,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53873,12 +53873,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53961,12 +53961,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54063,12 +54063,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54152,12 +54152,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54295,12 +54295,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54386,12 +54386,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54456,12 +54456,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54572,12 +54572,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54691,12 +54691,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54802,12 +54802,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54884,12 +54884,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54979,12 +54979,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55072,12 +55072,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55188,12 +55188,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -55301,12 +55301,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -55381,12 +55381,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -55465,12 +55465,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -55543,12 +55543,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -55621,12 +55621,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -55703,12 +55703,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -55796,12 +55796,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -55867,12 +55867,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55946,12 +55946,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56043,12 +56043,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56141,12 +56141,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56250,12 +56250,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56338,12 +56338,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56426,12 +56426,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56512,12 +56512,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56588,12 +56588,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56664,12 +56664,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -56728,12 +56728,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56793,12 +56793,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56869,12 +56869,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56933,12 +56933,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56997,12 +56997,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57064,12 +57064,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57131,12 +57131,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57198,12 +57198,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57326,12 +57326,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57419,12 +57419,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57508,12 +57508,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57590,12 +57590,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -57670,12 +57670,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57767,12 +57767,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57837,12 +57837,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57916,12 +57916,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57995,12 +57995,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58075,12 +58075,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58169,12 +58169,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58254,12 +58254,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58355,12 +58355,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58437,12 +58437,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58519,12 +58519,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58620,12 +58620,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58715,12 +58715,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58808,12 +58808,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58901,12 +58901,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58983,12 +58983,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59053,12 +59053,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59132,12 +59132,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59213,12 +59213,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59304,12 +59304,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59394,12 +59394,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59482,12 +59482,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59581,12 +59581,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59666,12 +59666,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59760,12 +59760,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59855,12 +59855,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59969,12 +59969,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60073,12 +60073,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60178,12 +60178,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60250,12 +60250,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60334,12 +60334,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60416,12 +60416,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60495,12 +60495,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60577,12 +60577,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60660,12 +60660,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60736,12 +60736,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60814,12 +60814,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60890,12 +60890,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60977,12 +60977,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61064,12 +61064,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61190,12 +61190,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61277,12 +61277,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61361,12 +61361,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61496,12 +61496,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61738,12 +61738,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61834,12 +61834,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61954,12 +61954,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62090,12 +62090,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62217,12 +62217,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62290,12 +62290,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62361,12 +62361,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62444,12 +62444,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -62527,12 +62527,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62609,12 +62609,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62685,12 +62685,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62761,12 +62761,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62843,12 +62843,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62934,12 +62934,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63031,12 +63031,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63125,12 +63125,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63216,12 +63216,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63308,12 +63308,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63387,12 +63387,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63470,12 +63470,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63555,12 +63555,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -63638,12 +63638,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63729,12 +63729,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63805,12 +63805,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63885,12 +63885,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63965,12 +63965,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -64042,12 +64042,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64133,12 +64133,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -64226,12 +64226,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64299,12 +64299,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64381,12 +64381,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64454,12 +64454,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64533,12 +64533,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64615,12 +64615,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -64700,12 +64700,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64794,12 +64794,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64903,12 +64903,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -64988,12 +64988,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65079,12 +65079,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65170,12 +65170,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -65253,12 +65253,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65356,12 +65356,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65449,12 +65449,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65537,12 +65537,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -65626,12 +65626,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -65717,12 +65717,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65808,12 +65808,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65899,12 +65899,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -65984,12 +65984,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -66076,12 +66076,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66162,12 +66162,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -66263,12 +66263,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66330,12 +66330,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -66409,12 +66409,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66473,12 +66473,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66540,12 +66540,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66621,12 +66621,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66700,12 +66700,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66794,12 +66794,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66876,12 +66876,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -66972,12 +66972,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -67047,12 +67047,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67137,12 +67137,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67222,12 +67222,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67298,12 +67298,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -67372,12 +67372,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67457,12 +67457,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67537,12 +67537,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67617,12 +67617,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67700,12 +67700,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -67781,12 +67781,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -67876,12 +67876,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -67968,12 +67968,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68074,12 +68074,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68174,12 +68174,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -68269,12 +68269,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68347,12 +68347,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68438,12 +68438,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68553,12 +68553,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68644,12 +68644,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68717,12 +68717,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68807,12 +68807,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -68892,12 +68892,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68974,12 +68974,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] }, @@ -69056,12 +69056,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69138,12 +69138,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -69218,12 +69218,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -69312,12 +69312,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69470,12 +69470,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69540,12 +69540,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69628,12 +69628,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69709,12 +69709,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2024-08-05+csv\" \\\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+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -69782,12 +69782,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69849,12 +69849,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -69928,12 +69928,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70004,12 +70004,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70083,12 +70083,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70159,12 +70159,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -70236,12 +70236,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70327,12 +70327,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70412,12 +70412,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70502,12 +70502,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70587,12 +70587,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -70660,12 +70660,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70742,12 +70742,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70828,12 +70828,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70917,12 +70917,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71003,12 +71003,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -71092,12 +71092,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -71179,12 +71179,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -71280,12 +71280,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71378,12 +71378,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -71482,12 +71482,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71580,12 +71580,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -71662,12 +71662,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -71747,12 +71747,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -71843,12 +71843,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -71896,12 +71896,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -71974,12 +71974,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -72051,12 +72051,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -72130,12 +72130,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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 57d136c740..7b7ae22e60 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 @@ -30177,13 +30177,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30247,13 +30247,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30318,13 +30318,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30389,13 +30389,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30458,13 +30458,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30532,13 +30532,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30614,13 +30614,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30695,13 +30695,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30783,7 +30783,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -30791,7 +30791,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -30860,13 +30860,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30939,7 +30939,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -30947,7 +30947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31024,13 +31024,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31106,13 +31106,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31195,7 +31195,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31203,7 +31203,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31295,13 +31295,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31378,7 +31378,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31386,7 +31386,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31459,13 +31459,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31539,13 +31539,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31627,7 +31627,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31635,7 +31635,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -31708,13 +31708,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31780,13 +31780,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31853,13 +31853,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -31943,7 +31943,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31951,7 +31951,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32018,13 +32018,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32088,13 +32088,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32169,7 +32169,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32177,7 +32177,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32254,7 +32254,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32262,7 +32262,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32333,13 +32333,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32420,7 +32420,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32428,7 +32428,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32511,13 +32511,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32594,13 +32594,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32677,13 +32677,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32752,13 +32752,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32832,7 +32832,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32840,7 +32840,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -32918,13 +32918,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33001,13 +33001,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33093,7 +33093,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33101,7 +33101,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33191,7 +33191,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33199,7 +33199,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33282,13 +33282,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33368,13 +33368,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33451,13 +33451,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33542,7 +33542,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33550,7 +33550,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33632,13 +33632,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33707,13 +33707,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33782,7 +33782,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33790,7 +33790,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -33869,13 +33869,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33958,7 +33958,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33966,7 +33966,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34048,7 +34048,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -34056,7 +34056,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --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 Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34198,7 +34198,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34206,7 +34206,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34271,13 +34271,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34346,7 +34346,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34354,7 +34354,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34422,13 +34422,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34540,7 +34540,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34548,7 +34548,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34626,13 +34626,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34728,13 +34728,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34799,13 +34799,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34885,7 +34885,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34893,7 +34893,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -34958,13 +34958,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35036,7 +35036,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35044,7 +35044,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35126,13 +35126,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35204,13 +35204,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35295,7 +35295,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35303,7 +35303,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35377,13 +35377,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35588,7 +35588,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35596,7 +35596,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35679,13 +35679,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35760,13 +35760,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35851,7 +35851,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35859,7 +35859,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -35987,13 +35987,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36077,13 +36077,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36158,13 +36158,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36247,7 +36247,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36255,7 +36255,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36334,13 +36334,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36415,13 +36415,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36508,7 +36508,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36516,7 +36516,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -36601,13 +36601,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36687,13 +36687,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36766,13 +36766,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -36843,13 +36843,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36932,7 +36932,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36940,7 +36940,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37019,13 +37019,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37108,7 +37108,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37116,7 +37116,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37201,13 +37201,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37289,13 +37289,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37384,7 +37384,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -37392,7 +37392,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37475,13 +37475,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37563,13 +37563,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37643,13 +37643,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37736,7 +37736,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37744,7 +37744,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37831,7 +37831,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37839,7 +37839,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -37915,13 +37915,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38004,13 +38004,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38084,13 +38084,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38173,13 +38173,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38255,13 +38255,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38347,13 +38347,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38428,13 +38428,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38522,7 +38522,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38530,7 +38530,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38620,7 +38620,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38628,7 +38628,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38712,7 +38712,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38720,7 +38720,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38809,7 +38809,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38817,7 +38817,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -38910,13 +38910,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39004,13 +39004,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39095,13 +39095,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39197,7 +39197,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -39205,7 +39205,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39283,13 +39283,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39364,13 +39364,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -39454,7 +39454,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39462,7 +39462,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39551,13 +39551,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -39643,7 +39643,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39651,7 +39651,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39800,7 +39800,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39808,7 +39808,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -39888,13 +39888,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39981,7 +39981,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39989,7 +39989,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40077,13 +40077,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -40170,13 +40170,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40272,7 +40272,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40280,7 +40280,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40384,14 +40384,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ @@ -40471,13 +40471,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -40555,13 +40555,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40644,7 +40644,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40652,7 +40652,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40731,13 +40731,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40823,7 +40823,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40831,7 +40831,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -40903,7 +40903,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40911,7 +40911,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41002,13 +41002,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41089,7 +41089,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41097,7 +41097,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41186,13 +41186,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41268,13 +41268,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -41347,13 +41347,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41435,7 +41435,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41443,7 +41443,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41527,7 +41527,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41535,7 +41535,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41622,13 +41622,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41713,7 +41713,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41721,7 +41721,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -41820,13 +41820,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41921,13 +41921,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42021,13 +42021,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42130,7 +42130,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42138,7 +42138,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42226,13 +42226,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42323,13 +42323,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42423,7 +42423,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42431,7 +42431,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42509,13 +42509,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42597,7 +42597,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42605,7 +42605,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -42693,13 +42693,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42783,13 +42783,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42870,13 +42870,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42964,7 +42964,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42972,7 +42972,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43046,13 +43046,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43137,7 +43137,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43145,7 +43145,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43227,7 +43227,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43235,7 +43235,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43344,14 +43344,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ @@ -43430,13 +43430,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43514,7 +43514,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43522,7 +43522,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43602,7 +43602,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43610,7 +43610,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43678,13 +43678,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43763,13 +43763,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43846,7 +43846,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43854,7 +43854,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -43935,13 +43935,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44013,13 +44013,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44106,7 +44106,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44114,7 +44114,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44182,13 +44182,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44253,13 +44253,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44336,7 +44336,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44344,7 +44344,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44419,13 +44419,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44495,13 +44495,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44584,7 +44584,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44592,7 +44592,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44668,13 +44668,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44749,7 +44749,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44757,7 +44757,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -44828,13 +44828,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44905,13 +44905,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44994,7 +44994,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45002,7 +45002,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45077,13 +45077,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45170,13 +45170,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45263,13 +45263,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45366,7 +45366,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45374,7 +45374,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45469,14 +45469,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ @@ -45543,13 +45543,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45717,7 +45717,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45725,7 +45725,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -45820,13 +45820,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45916,13 +45916,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46025,7 +46025,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46033,7 +46033,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -46109,13 +46109,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46207,7 +46207,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46215,7 +46215,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -46326,13 +46326,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46438,13 +46438,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46510,13 +46510,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46603,7 +46603,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46611,7 +46611,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -46684,13 +46684,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46767,7 +46767,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46775,7 +46775,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -46864,13 +46864,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46949,13 +46949,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47075,13 +47075,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47164,13 +47164,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47235,13 +47235,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47336,13 +47336,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47436,13 +47436,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47535,13 +47535,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47611,13 +47611,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47702,13 +47702,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47792,13 +47792,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47894,7 +47894,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -47902,7 +47902,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -47998,7 +47998,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48006,7 +48006,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48080,13 +48080,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48161,7 +48161,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48169,7 +48169,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48242,7 +48242,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48250,7 +48250,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48325,13 +48325,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48406,13 +48406,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48495,7 +48495,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48503,7 +48503,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -48571,13 +48571,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48648,13 +48648,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48757,13 +48757,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48867,13 +48867,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48987,7 +48987,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48995,7 +48995,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49081,7 +49081,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49089,7 +49089,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49159,13 +49159,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49233,7 +49233,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49241,7 +49241,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49320,7 +49320,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49328,7 +49328,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49408,13 +49408,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49476,13 +49476,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -49544,13 +49544,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49620,7 +49620,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49628,7 +49628,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49692,7 +49692,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49700,7 +49700,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49764,7 +49764,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49772,7 +49772,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -49837,13 +49837,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49906,13 +49906,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -49975,7 +49975,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49983,7 +49983,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50089,13 +50089,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50173,13 +50173,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50257,7 +50257,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50265,7 +50265,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50341,13 +50341,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50420,13 +50420,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50510,7 +50510,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -50518,7 +50518,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50586,13 +50586,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50664,7 +50664,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50672,7 +50672,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -50747,13 +50747,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50826,13 +50826,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50915,7 +50915,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -50923,7 +50923,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51001,13 +51001,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51091,13 +51091,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51171,7 +51171,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51179,7 +51179,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51255,7 +51255,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51263,7 +51263,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51349,13 +51349,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51439,13 +51439,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51528,13 +51528,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51615,7 +51615,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51623,7 +51623,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -51701,13 +51701,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51790,13 +51790,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51880,13 +51880,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51982,7 +51982,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51990,7 +51990,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52082,13 +52082,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52179,13 +52179,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52258,7 +52258,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52266,7 +52266,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52333,13 +52333,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52410,7 +52410,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52418,7 +52418,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52494,13 +52494,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52584,7 +52584,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52592,7 +52592,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52675,13 +52675,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52761,13 +52761,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52854,7 +52854,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -52862,7 +52862,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -52931,13 +52931,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53012,7 +53012,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53020,7 +53020,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53092,13 +53092,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53188,7 +53188,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53196,7 +53196,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -53272,13 +53272,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53353,13 +53353,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53425,13 +53425,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53502,13 +53502,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53614,13 +53614,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53686,13 +53686,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53766,13 +53766,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53849,13 +53849,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53958,13 +53958,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54038,13 +54038,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54120,13 +54120,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54245,13 +54245,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54481,13 +54481,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54578,13 +54578,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54692,13 +54692,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54813,13 +54813,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54886,13 +54886,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -54958,13 +54958,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55038,7 +55038,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55046,7 +55046,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -55122,7 +55122,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55130,7 +55130,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -55207,7 +55207,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55215,7 +55215,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -55288,13 +55288,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55360,13 +55360,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55439,7 +55439,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55447,7 +55447,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -55526,13 +55526,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55616,7 +55616,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55624,7 +55624,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -55709,13 +55709,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55792,13 +55792,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55881,13 +55881,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55959,13 +55959,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56041,7 +56041,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56049,7 +56049,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -56127,13 +56127,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56208,13 +56208,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56294,7 +56294,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56302,7 +56302,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -56371,13 +56371,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56449,7 +56449,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56457,7 +56457,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -56531,13 +56531,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56607,13 +56607,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56692,7 +56692,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56700,7 +56700,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -56783,7 +56783,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56791,7 +56791,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -56860,13 +56860,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56939,7 +56939,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56947,7 +56947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -57014,13 +57014,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57091,7 +57091,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57099,7 +57099,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -57174,13 +57174,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57256,13 +57256,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57343,7 +57343,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57351,7 +57351,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -57447,14 +57447,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ @@ -57528,13 +57528,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57613,7 +57613,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57621,7 +57621,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -57702,13 +57702,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57783,13 +57783,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57876,7 +57876,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57884,7 +57884,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -57966,7 +57966,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57974,7 +57974,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -58053,13 +58053,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58137,13 +58137,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58222,7 +58222,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58230,7 +58230,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -58311,7 +58311,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58319,7 +58319,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -58397,13 +58397,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58475,13 +58475,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58561,7 +58561,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58569,7 +58569,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -58649,13 +58649,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58742,7 +58742,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -58750,7 +58750,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -58815,13 +58815,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58895,7 +58895,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58903,7 +58903,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -58970,13 +58970,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59039,13 +59039,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59117,7 +59117,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59125,7 +59125,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -59199,13 +59199,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -59283,13 +59283,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -59363,13 +59363,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59452,7 +59452,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59460,7 +59460,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -59531,7 +59531,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59539,7 +59539,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -59617,13 +59617,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -59699,13 +59699,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59781,7 +59781,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59789,7 +59789,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -59866,13 +59866,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59940,13 +59940,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60021,7 +60021,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -60029,7 +60029,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -60100,13 +60100,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60178,7 +60178,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60186,7 +60186,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -60263,13 +60263,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60343,13 +60343,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60432,7 +60432,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -60440,7 +60440,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -60520,13 +60520,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60613,7 +60613,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60621,7 +60621,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -60710,13 +60710,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60800,13 +60800,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60877,7 +60877,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60885,7 +60885,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -60968,13 +60968,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61072,13 +61072,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61161,13 +61161,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61234,13 +61234,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61323,13 +61323,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61404,13 +61404,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61483,7 +61483,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61491,7 +61491,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -61566,7 +61566,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61574,7 +61574,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -61649,13 +61649,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -61729,13 +61729,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61817,7 +61817,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -61825,7 +61825,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -61954,13 +61954,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62040,13 +62040,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62127,13 +62127,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2024-08-05+csv" \ -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 --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -62198,13 +62198,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62271,13 +62271,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62341,13 +62341,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62418,7 +62418,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62426,7 +62426,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -62495,13 +62495,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62572,7 +62572,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62580,7 +62580,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -62651,13 +62651,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -62727,13 +62727,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62812,7 +62812,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -62820,7 +62820,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -62895,13 +62895,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62979,7 +62979,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62987,7 +62987,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -63064,13 +63064,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -63137,13 +63137,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63216,7 +63216,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63224,7 +63224,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -63299,13 +63299,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63383,7 +63383,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63391,7 +63391,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -63472,13 +63472,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -63556,13 +63556,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63649,7 +63649,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -63657,7 +63657,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -63742,13 +63742,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63837,7 +63837,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63845,7 +63845,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -63933,13 +63933,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -64015,13 +64015,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64091,13 +64091,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64174,13 +64174,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -64263,7 +64263,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -64271,7 +64271,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -64330,13 +64330,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64412,7 +64412,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -64420,7 +64420,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ @@ -64495,13 +64495,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64572,13 +64572,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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 89395a0f3e..38c6cef2d3 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 @@ -37339,12 +37339,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37406,12 +37406,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37479,12 +37479,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37552,12 +37552,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37616,12 +37616,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -37692,12 +37692,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -37775,12 +37775,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -37856,12 +37856,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -37948,12 +37948,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -38021,12 +38021,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -38103,12 +38103,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -38186,12 +38186,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -38270,12 +38270,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -38365,12 +38365,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -38473,12 +38473,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -38555,12 +38555,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -38632,12 +38632,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -38713,12 +38713,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -38802,12 +38802,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -38879,12 +38879,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -38949,12 +38949,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -39025,12 +39025,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] }, @@ -39121,12 +39121,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 '{ }'" } ] } @@ -39205,12 +39205,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: 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 --include --user \"${PUBLIC_KEY}:${PRIVATE_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\"" } ] } @@ -39275,12 +39275,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -39343,12 +39343,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39428,12 +39428,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39514,12 +39514,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39594,12 +39594,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -39692,12 +39692,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39777,12 +39777,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -39863,12 +39863,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -39950,12 +39950,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40026,12 +40026,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40105,12 +40105,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40185,12 +40185,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -40266,12 +40266,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40358,12 +40358,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -40453,12 +40453,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -40545,12 +40545,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40637,12 +40637,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40719,12 +40719,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -40813,12 +40813,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40904,12 +40904,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -40984,12 +40984,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41060,12 +41060,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41146,12 +41146,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -41246,12 +41246,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -41337,12 +41337,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41404,12 +41404,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41483,12 +41483,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41550,12 +41550,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41626,12 +41626,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41702,12 +41702,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -41839,12 +41839,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41922,12 +41922,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -42034,12 +42034,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -42104,12 +42104,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -42196,12 +42196,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -42263,12 +42263,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -42343,12 +42343,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42434,12 +42434,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -42513,12 +42513,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -42611,12 +42611,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42696,12 +42696,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] }, @@ -42791,12 +42791,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42886,12 +42886,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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\"" } ] } @@ -42976,12 +42976,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43066,12 +43066,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43159,12 +43159,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43242,12 +43242,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43340,12 +43340,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43428,12 +43428,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43522,12 +43522,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43607,12 +43607,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -43695,12 +43695,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -43792,12 +43792,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43886,12 +43886,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -43975,12 +43975,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44054,12 +44054,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -44131,12 +44131,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -44222,12 +44222,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44313,12 +44313,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -44404,12 +44404,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44495,12 +44495,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -44587,12 +44587,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44669,12 +44669,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -44763,12 +44763,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -44855,12 +44855,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -44958,12 +44958,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45060,12 +45060,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45159,12 +45159,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45241,12 +45241,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45335,12 +45335,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45417,12 +45417,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45511,12 +45511,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45600,12 +45600,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45698,12 +45698,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -45780,12 +45780,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -45882,12 +45882,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -45984,12 +45984,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -46077,12 +46077,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46178,12 +46178,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -46284,12 +46284,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -46384,12 +46384,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -46479,12 +46479,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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" @@ -46591,12 +46591,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -46675,12 +46675,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -46758,12 +46758,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -46854,12 +46854,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46956,12 +46956,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -47055,12 +47055,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47240,12 +47240,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47332,12 +47332,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47433,12 +47433,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47552,12 +47552,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -47650,12 +47650,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -47749,12 +47749,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -47862,12 +47862,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47951,12 +47951,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48038,12 +48038,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48133,12 +48133,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48219,12 +48219,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48318,12 +48318,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48394,12 +48394,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48497,12 +48497,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48589,12 +48589,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48684,12 +48684,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -48769,12 +48769,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -48849,12 +48849,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -48943,12 +48943,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -49037,12 +49037,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49136,12 +49136,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49234,12 +49234,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49351,12 +49351,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -49464,12 +49464,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49575,12 +49575,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -49700,12 +49700,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49798,12 +49798,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -49904,12 +49904,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -50014,12 +50014,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50094,12 +50094,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -50183,12 +50183,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50286,12 +50286,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50381,12 +50381,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -50471,12 +50471,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] }, @@ -50572,12 +50572,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50651,12 +50651,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50750,12 +50750,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -50902,12 +50902,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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\"" } ] } @@ -51001,12 +51001,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51092,12 +51092,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51219,12 +51219,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -51289,12 +51289,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51383,12 +51383,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51471,12 +51471,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51547,12 +51547,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -51636,12 +51636,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -51714,12 +51714,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51815,12 +51815,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51885,12 +51885,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -51973,12 +51973,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52055,12 +52055,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52132,12 +52132,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52229,12 +52229,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52312,12 +52312,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52397,12 +52397,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52473,12 +52473,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52550,12 +52550,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -52647,12 +52647,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52729,12 +52729,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -52817,12 +52817,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -52906,12 +52906,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53009,12 +53009,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53115,12 +53115,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -53191,12 +53191,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53431,12 +53431,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53523,12 +53523,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -53610,12 +53610,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53717,12 +53717,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53805,12 +53805,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -53907,12 +53907,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54040,12 +54040,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54170,12 +54170,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54237,12 +54237,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54322,12 +54322,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54401,12 +54401,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -54489,12 +54489,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54591,12 +54591,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -54680,12 +54680,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54823,12 +54823,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54914,12 +54914,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -54984,12 +54984,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55100,12 +55100,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55219,12 +55219,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55330,12 +55330,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55412,12 +55412,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -55507,12 +55507,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -55600,12 +55600,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -55716,12 +55716,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -55829,12 +55829,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -55909,12 +55909,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -55993,12 +55993,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -56071,12 +56071,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -56149,12 +56149,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -56231,12 +56231,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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" @@ -56324,12 +56324,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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" @@ -56395,12 +56395,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56474,12 +56474,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -56571,12 +56571,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -56669,12 +56669,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -56778,12 +56778,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56866,12 +56866,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56954,12 +56954,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57040,12 +57040,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57116,12 +57116,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57192,12 +57192,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -57256,12 +57256,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57321,12 +57321,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -57397,12 +57397,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57461,12 +57461,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57525,12 +57525,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57592,12 +57592,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57659,12 +57659,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57726,12 +57726,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57854,12 +57854,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -57947,12 +57947,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58036,12 +58036,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58118,12 +58118,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58198,12 +58198,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58295,12 +58295,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58365,12 +58365,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58444,12 +58444,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58523,12 +58523,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -58603,12 +58603,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -58697,12 +58697,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58782,12 +58782,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58883,12 +58883,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -58965,12 +58965,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59047,12 +59047,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59148,12 +59148,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59243,12 +59243,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -59336,12 +59336,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -59429,12 +59429,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59511,12 +59511,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59581,12 +59581,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59660,12 +59660,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59741,12 +59741,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -59832,12 +59832,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59922,12 +59922,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60010,12 +60010,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60109,12 +60109,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60194,12 +60194,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60288,12 +60288,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60383,12 +60383,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60497,12 +60497,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60601,12 +60601,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -60706,12 +60706,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -60778,12 +60778,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -60862,12 +60862,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60944,12 +60944,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -61023,12 +61023,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61105,12 +61105,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -61188,12 +61188,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61264,12 +61264,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61342,12 +61342,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61418,12 +61418,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61505,12 +61505,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61592,12 +61592,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61718,12 +61718,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61805,12 +61805,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -61889,12 +61889,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62024,12 +62024,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62266,12 +62266,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62362,12 +62362,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62482,12 +62482,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62618,12 +62618,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62745,12 +62745,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -62818,12 +62818,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62889,12 +62889,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -62972,12 +62972,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -63055,12 +63055,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63137,12 +63137,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63213,12 +63213,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63289,12 +63289,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63371,12 +63371,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63462,12 +63462,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63559,12 +63559,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63653,12 +63653,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63744,12 +63744,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63836,12 +63836,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -63915,12 +63915,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -63998,12 +63998,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64083,12 +64083,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -64166,12 +64166,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64257,12 +64257,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64333,12 +64333,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64413,12 +64413,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64493,12 +64493,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -64570,12 +64570,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64661,12 +64661,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -64754,12 +64754,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64827,12 +64827,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -64909,12 +64909,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64982,12 +64982,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65061,12 +65061,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65143,12 +65143,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -65228,12 +65228,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65322,12 +65322,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65431,12 +65431,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" }, { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -65516,12 +65516,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65607,12 +65607,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65698,12 +65698,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -65781,12 +65781,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -65884,12 +65884,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65977,12 +65977,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66065,12 +66065,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -66154,12 +66154,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66245,12 +66245,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66336,12 +66336,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66427,12 +66427,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -66512,12 +66512,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -66604,12 +66604,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66690,12 +66690,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] }, @@ -66791,12 +66791,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66858,12 +66858,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -66937,12 +66937,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67001,12 +67001,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -67068,12 +67068,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -67149,12 +67149,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67228,12 +67228,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -67322,12 +67322,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] } @@ -67404,12 +67404,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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}\"" } ] } @@ -67500,12 +67500,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -67576,12 +67576,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -67658,12 +67658,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67743,12 +67743,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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": { @@ -67829,12 +67829,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"Authorization: Bearer ${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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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\"" } ] }, @@ -67920,12 +67920,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67995,12 +67995,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -68085,12 +68085,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68170,12 +68170,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68246,12 +68246,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -68320,12 +68320,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68405,12 +68405,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68485,12 +68485,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68565,12 +68565,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68648,12 +68648,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -68729,12 +68729,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -68824,12 +68824,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -68916,12 +68916,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -69022,12 +69022,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69122,12 +69122,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -69217,12 +69217,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69295,12 +69295,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -69386,12 +69386,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69501,12 +69501,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69592,12 +69592,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69665,12 +69665,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69755,12 +69755,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -69840,12 +69840,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -69922,12 +69922,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] }, @@ -70004,12 +70004,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70086,12 +70086,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -70166,12 +70166,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70260,12 +70260,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -70418,12 +70418,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70488,12 +70488,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70576,12 +70576,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70657,12 +70657,12 @@ { "lang": "cURL", "label": "curl (Service Accounts)", - "source": "curl --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"Accept: application/vnd.atlas.2025-01-01+csv\" \\\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+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" + "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -70753,12 +70753,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70826,12 +70826,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -70893,12 +70893,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -70972,12 +70972,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71048,12 +71048,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -71127,12 +71127,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71203,12 +71203,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -71280,12 +71280,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -71371,12 +71371,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71456,12 +71456,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -71546,12 +71546,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71631,12 +71631,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -71704,12 +71704,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -71786,12 +71786,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -71872,12 +71872,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -71961,12 +71961,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -72047,12 +72047,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -72136,12 +72136,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] }, @@ -72223,12 +72223,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -72324,12 +72324,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -72422,12 +72422,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] }, @@ -72526,12 +72526,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -72624,12 +72624,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -72706,12 +72706,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -72791,12 +72791,12 @@ { "lang": "cURL", "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}\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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}\"" } ] } @@ -72887,12 +72887,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --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 --include --user \"${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 '{ }'" } ] } @@ -72940,12 +72940,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -73018,12 +73018,12 @@ { "lang": "cURL", "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 '{ }'" + "source": "curl --include --header \"Authorization: Bearer ${ACCESS_TOKEN}\" \\\n --header \"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 --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 '{ }'" } ] } @@ -73095,12 +73095,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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\"" } ] } @@ -73174,12 +73174,12 @@ { "lang": "cURL", "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\"" + "source": "curl --include --header \"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 --include --user \"${PUBLIC_KEY}:${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 d534d1a5f0..68e0695f9e 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 @@ -30589,13 +30589,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30659,13 +30659,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30730,13 +30730,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30801,13 +30801,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -30870,13 +30870,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -30944,13 +30944,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31026,13 +31026,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31107,13 +31107,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31195,7 +31195,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31203,7 +31203,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31272,13 +31272,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31351,7 +31351,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31359,7 +31359,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31436,13 +31436,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31518,13 +31518,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31607,7 +31607,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -31615,7 +31615,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31707,13 +31707,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -31790,7 +31790,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -31798,7 +31798,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -31871,13 +31871,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -31951,13 +31951,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -32039,7 +32039,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32047,7 +32047,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32120,13 +32120,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -32192,13 +32192,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -32265,13 +32265,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -32355,7 +32355,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32363,7 +32363,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32430,13 +32430,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -32500,13 +32500,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32581,7 +32581,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -32589,7 +32589,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32666,7 +32666,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32674,7 +32674,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32745,13 +32745,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -32832,7 +32832,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -32840,7 +32840,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -32923,13 +32923,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33006,13 +33006,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33089,13 +33089,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33164,13 +33164,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33244,7 +33244,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -33252,7 +33252,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33330,13 +33330,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -33413,13 +33413,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33505,7 +33505,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33513,7 +33513,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33603,7 +33603,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33611,7 +33611,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -33694,13 +33694,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33780,13 +33780,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33863,13 +33863,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -33954,7 +33954,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -33962,7 +33962,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34044,13 +34044,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34119,13 +34119,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34194,7 +34194,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34202,7 +34202,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34281,13 +34281,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -34370,7 +34370,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -34378,7 +34378,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34460,7 +34460,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -34468,7 +34468,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --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 Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34610,7 +34610,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34618,7 +34618,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34683,13 +34683,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34758,7 +34758,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34766,7 +34766,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -34834,13 +34834,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -34952,7 +34952,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -34960,7 +34960,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35038,13 +35038,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35140,13 +35140,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35211,13 +35211,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35297,7 +35297,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35305,7 +35305,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35370,13 +35370,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35448,7 +35448,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -35456,7 +35456,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35538,13 +35538,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -35616,13 +35616,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -35707,7 +35707,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -35715,7 +35715,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -35789,13 +35789,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36000,7 +36000,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36008,7 +36008,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36091,13 +36091,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -36172,13 +36172,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36263,7 +36263,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -36271,7 +36271,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36399,13 +36399,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36489,13 +36489,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36570,13 +36570,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36659,7 +36659,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36667,7 +36667,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -36746,13 +36746,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36827,13 +36827,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -36920,7 +36920,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -36928,7 +36928,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37013,13 +37013,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37099,13 +37099,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37178,13 +37178,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -37255,13 +37255,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37344,7 +37344,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37352,7 +37352,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37431,13 +37431,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37520,7 +37520,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -37528,7 +37528,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37613,13 +37613,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37701,13 +37701,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -37796,7 +37796,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -37804,7 +37804,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -37887,13 +37887,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -37975,13 +37975,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38055,13 +38055,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38148,7 +38148,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38156,7 +38156,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38243,7 +38243,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38251,7 +38251,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -38327,13 +38327,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38416,13 +38416,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38496,13 +38496,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38585,13 +38585,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38667,13 +38667,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38759,13 +38759,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38840,13 +38840,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -38934,7 +38934,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -38942,7 +38942,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39032,7 +39032,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39040,7 +39040,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39124,7 +39124,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39132,7 +39132,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39221,7 +39221,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39229,7 +39229,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39322,13 +39322,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39416,13 +39416,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -39507,13 +39507,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39609,7 +39609,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -39617,7 +39617,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39695,13 +39695,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -39776,13 +39776,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -39866,7 +39866,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -39874,7 +39874,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -39963,13 +39963,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -40055,7 +40055,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40063,7 +40063,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40212,7 +40212,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40220,7 +40220,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40300,13 +40300,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40393,7 +40393,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -40401,7 +40401,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40489,13 +40489,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -40582,13 +40582,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -40684,7 +40684,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -40692,7 +40692,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -40796,14 +40796,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ @@ -40883,13 +40883,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -40967,13 +40967,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41056,7 +41056,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41064,7 +41064,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41143,13 +41143,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41235,7 +41235,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41243,7 +41243,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41315,7 +41315,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41323,7 +41323,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41414,13 +41414,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41501,7 +41501,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41509,7 +41509,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41598,13 +41598,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41680,13 +41680,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -41759,13 +41759,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -41847,7 +41847,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41855,7 +41855,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -41939,7 +41939,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -41947,7 +41947,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -42034,13 +42034,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42125,7 +42125,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -42133,7 +42133,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -42232,13 +42232,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42333,13 +42333,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42433,13 +42433,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42542,7 +42542,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42550,7 +42550,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -42638,13 +42638,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -42735,13 +42735,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -42835,7 +42835,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -42843,7 +42843,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -42921,13 +42921,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43009,7 +43009,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43017,7 +43017,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43105,13 +43105,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43195,13 +43195,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -43282,13 +43282,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43376,7 +43376,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -43384,7 +43384,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43458,13 +43458,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43549,7 +43549,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43557,7 +43557,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43639,7 +43639,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43647,7 +43647,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -43756,14 +43756,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ @@ -43842,13 +43842,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -43926,7 +43926,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -43934,7 +43934,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44014,7 +44014,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44022,7 +44022,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44090,13 +44090,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44175,13 +44175,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44258,7 +44258,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44266,7 +44266,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44347,13 +44347,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44425,13 +44425,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44518,7 +44518,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -44526,7 +44526,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44594,13 +44594,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44665,13 +44665,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44748,7 +44748,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -44756,7 +44756,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -44831,13 +44831,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -44907,13 +44907,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -44996,7 +44996,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45004,7 +45004,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45080,13 +45080,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45161,7 +45161,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -45169,7 +45169,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45240,13 +45240,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45317,13 +45317,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45406,7 +45406,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45414,7 +45414,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45489,13 +45489,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45582,13 +45582,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -45675,13 +45675,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -45778,7 +45778,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -45786,7 +45786,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -45881,14 +45881,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ @@ -45955,13 +45955,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46129,7 +46129,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46137,7 +46137,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46232,13 +46232,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -46328,13 +46328,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46437,7 +46437,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -46445,7 +46445,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46521,13 +46521,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46619,7 +46619,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -46627,7 +46627,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -46738,13 +46738,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46850,13 +46850,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -46922,13 +46922,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47015,7 +47015,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47023,7 +47023,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -47096,13 +47096,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47179,7 +47179,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -47187,7 +47187,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -47276,13 +47276,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -47361,13 +47361,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47487,13 +47487,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47576,13 +47576,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47647,13 +47647,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47748,13 +47748,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47848,13 +47848,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -47947,13 +47947,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48023,13 +48023,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48114,13 +48114,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48204,13 +48204,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48306,7 +48306,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48314,7 +48314,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48410,7 +48410,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48418,7 +48418,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48492,13 +48492,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48573,7 +48573,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48581,7 +48581,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48654,7 +48654,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -48662,7 +48662,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48737,13 +48737,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -48818,13 +48818,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -48907,7 +48907,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -48915,7 +48915,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -48983,13 +48983,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49060,13 +49060,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49169,13 +49169,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -49279,13 +49279,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49399,7 +49399,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -49407,7 +49407,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49493,7 +49493,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49501,7 +49501,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49571,13 +49571,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49645,7 +49645,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49653,7 +49653,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49732,7 +49732,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -49740,7 +49740,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -49820,13 +49820,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -49888,13 +49888,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -49956,13 +49956,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50032,7 +50032,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50040,7 +50040,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50104,7 +50104,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50112,7 +50112,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50176,7 +50176,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50184,7 +50184,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50249,13 +50249,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50318,13 +50318,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -50387,7 +50387,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50395,7 +50395,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50501,13 +50501,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50585,13 +50585,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50669,7 +50669,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -50677,7 +50677,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50753,13 +50753,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -50832,13 +50832,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -50922,7 +50922,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -50930,7 +50930,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -50998,13 +50998,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51076,7 +51076,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51084,7 +51084,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51159,13 +51159,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51238,13 +51238,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51327,7 +51327,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -51335,7 +51335,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51413,13 +51413,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51503,13 +51503,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51583,7 +51583,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51591,7 +51591,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51667,7 +51667,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -51675,7 +51675,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -51761,13 +51761,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -51851,13 +51851,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -51940,13 +51940,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52027,7 +52027,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52035,7 +52035,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52113,13 +52113,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52202,13 +52202,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52292,13 +52292,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52394,7 +52394,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52402,7 +52402,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52494,13 +52494,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -52591,13 +52591,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52670,7 +52670,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52678,7 +52678,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52745,13 +52745,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52822,7 +52822,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -52830,7 +52830,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -52906,13 +52906,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -52996,7 +52996,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53004,7 +53004,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53087,13 +53087,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53173,13 +53173,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53266,7 +53266,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -53274,7 +53274,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53343,13 +53343,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53424,7 +53424,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53432,7 +53432,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53504,13 +53504,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53600,7 +53600,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -53608,7 +53608,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -53684,13 +53684,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -53765,13 +53765,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53837,13 +53837,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -53914,13 +53914,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54026,13 +54026,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54098,13 +54098,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54178,13 +54178,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54261,13 +54261,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54370,13 +54370,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54450,13 +54450,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54532,13 +54532,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54657,13 +54657,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54893,13 +54893,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -54990,13 +54990,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55104,13 +55104,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55225,13 +55225,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55298,13 +55298,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -55370,13 +55370,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55450,7 +55450,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55458,7 +55458,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -55534,7 +55534,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55542,7 +55542,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -55619,7 +55619,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -55627,7 +55627,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -55700,13 +55700,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55772,13 +55772,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -55851,7 +55851,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -55859,7 +55859,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -55938,13 +55938,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56028,7 +56028,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56036,7 +56036,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -56121,13 +56121,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56204,13 +56204,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56293,13 +56293,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56371,13 +56371,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56453,7 +56453,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56461,7 +56461,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -56539,13 +56539,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -56620,13 +56620,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56706,7 +56706,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -56714,7 +56714,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -56783,13 +56783,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -56861,7 +56861,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -56869,7 +56869,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -56943,13 +56943,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57019,13 +57019,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57104,7 +57104,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57112,7 +57112,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -57195,7 +57195,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57203,7 +57203,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -57272,13 +57272,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57351,7 +57351,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57359,7 +57359,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -57426,13 +57426,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57503,7 +57503,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -57511,7 +57511,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -57586,13 +57586,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -57668,13 +57668,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -57755,7 +57755,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -57763,7 +57763,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -57859,14 +57859,14 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ @@ -57940,13 +57940,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58025,7 +58025,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58033,7 +58033,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -58114,13 +58114,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58195,13 +58195,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58288,7 +58288,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -58296,7 +58296,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -58378,7 +58378,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58386,7 +58386,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -58465,13 +58465,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -58549,13 +58549,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58634,7 +58634,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58642,7 +58642,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -58723,7 +58723,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58731,7 +58731,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -58809,13 +58809,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58887,13 +58887,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -58973,7 +58973,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -58981,7 +58981,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -59061,13 +59061,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59154,7 +59154,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -59162,7 +59162,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -59227,13 +59227,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -59307,7 +59307,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59315,7 +59315,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -59382,13 +59382,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59451,13 +59451,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -59529,7 +59529,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59537,7 +59537,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -59611,13 +59611,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -59695,13 +59695,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -59775,13 +59775,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -59864,7 +59864,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -59872,7 +59872,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -59940,13 +59940,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -60019,7 +60019,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60027,7 +60027,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -60105,13 +60105,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60188,13 +60188,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "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 --include --user "${PUBLIC_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" @@ -60274,7 +60274,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -60282,7 +60282,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -60353,7 +60353,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60361,7 +60361,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -60439,13 +60439,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --user "${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" @@ -60521,13 +60521,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60603,7 +60603,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -60611,7 +60611,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -60688,13 +60688,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -60762,13 +60762,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -60843,7 +60843,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -60851,7 +60851,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -60922,13 +60922,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61000,7 +61000,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61008,7 +61008,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -61085,13 +61085,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -61165,13 +61165,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61254,7 +61254,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -61262,7 +61262,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -61342,13 +61342,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61435,7 +61435,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61443,7 +61443,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -61532,13 +61532,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -61622,13 +61622,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61699,7 +61699,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -61707,7 +61707,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -61790,13 +61790,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61894,13 +61894,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -61983,13 +61983,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62056,13 +62056,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62145,13 +62145,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62226,13 +62226,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62305,7 +62305,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62313,7 +62313,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -62388,7 +62388,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -62396,7 +62396,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -62471,13 +62471,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -62551,13 +62551,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62639,7 +62639,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -62647,7 +62647,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -62776,13 +62776,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62862,13 +62862,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -62949,13 +62949,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --header "Authorization: Bearer ${ACCESS_TOKEN}" \ --header "Accept: application/vnd.atlas.2025-01-01+csv" \ -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 --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" @@ -63037,13 +63037,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63108,13 +63108,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63181,13 +63181,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63251,13 +63251,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63328,7 +63328,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63336,7 +63336,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -63405,13 +63405,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63482,7 +63482,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63490,7 +63490,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -63561,13 +63561,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -63637,13 +63637,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63722,7 +63722,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -63730,7 +63730,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -63805,13 +63805,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -63889,7 +63889,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -63897,7 +63897,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -63974,13 +63974,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -64047,13 +64047,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64126,7 +64126,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -64134,7 +64134,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -64209,13 +64209,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64293,7 +64293,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -64301,7 +64301,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -64382,13 +64382,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -64466,13 +64466,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64559,7 +64559,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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}" \ @@ -64567,7 +64567,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -64652,13 +64652,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -64747,7 +64747,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -64755,7 +64755,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -64843,13 +64843,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -64925,13 +64925,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -65001,13 +65001,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -65084,13 +65084,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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}" @@ -65173,7 +65173,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -65181,7 +65181,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -65240,13 +65240,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -65322,7 +65322,7 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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" \ @@ -65330,7 +65330,7 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ --digest \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ @@ -65405,13 +65405,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" @@ -65482,13 +65482,13 @@ paths: - label: curl (Service Accounts) lang: cURL source: |- - curl --header "Authorization: Bearer ${ACCESS_TOKEN}" \ + curl --include --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 --include --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" diff --git a/tools/cli/test/e2e/cli/output/.gitkeep b/tools/cli/test/e2e/cli/output/.gitkeep deleted file mode 100644 index e69de29bb2..0000000000 From 160ef38780c2bc91cddd224990e310b887d05148 Mon Sep 17 00:00:00 2001 From: Andrea Angiolillo Date: Tue, 26 Aug 2025 10:46:35 +0100 Subject: [PATCH 2/2] fixes --- .../internal/openapi/filter/code_sample.go | 2 +- .../openapi/filter/code_sample_test.go | 8 +- .../data/split/dev/openapi-v2-2023-01-01.json | 674 +++---- .../data/split/dev/openapi-v2-2023-01-01.yaml | 1348 +++++++------- .../data/split/dev/openapi-v2-2023-02-01.json | 698 +++---- .../data/split/dev/openapi-v2-2023-02-01.yaml | 1396 +++++++------- .../data/split/dev/openapi-v2-2023-10-01.json | 726 ++++---- .../data/split/dev/openapi-v2-2023-10-01.yaml | 1452 +++++++-------- .../data/split/dev/openapi-v2-2023-11-15.json | 752 ++++---- .../data/split/dev/openapi-v2-2023-11-15.yaml | 1504 ++++++++-------- .../data/split/dev/openapi-v2-2024-05-30.json | 788 ++++---- .../data/split/dev/openapi-v2-2024-05-30.yaml | 1576 ++++++++-------- .../data/split/dev/openapi-v2-2024-08-05.json | 788 ++++---- .../data/split/dev/openapi-v2-2024-08-05.yaml | 1576 ++++++++-------- .../data/split/dev/openapi-v2-2025-01-01.json | 800 ++++----- .../data/split/dev/openapi-v2-2025-01-01.yaml | 1600 ++++++++--------- 16 files changed, 7844 insertions(+), 7844 deletions(-) diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index 89de7c759a..b46cb886cd 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -77,7 +77,7 @@ func getFileExtension(format string) string { func (f *CodeSampleFilter) newDigestCurlCodeSamplesForOperation(pathName, opMethod, format string) codeSample { version := apiVersion(f.metadata.targetVersion) - source := "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + + source := "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n " + "--header \"Accept: application/vnd.atlas." + version + "+" + format + "\" \\\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 8849a2be09..8caef11369 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -110,7 +110,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, }, @@ -181,7 +181,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n " + "--header \"Accept: application/vnd.atlas.preview+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, }, @@ -252,7 +252,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01.upcoming+json\" \\\n " + "-X GET \"https://cloud.mongodb.com/test?pretty=true\"", }, }, @@ -342,7 +342,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "curl (Digest)", - Source: "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n " + + Source: "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n " + "--header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n " + "-X GET \"https://cloud.mongodb.com/test\" \\\n --output \"file_name.gz\"", }, 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 8c5f93c8c9..c2552c7214 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 @@ -34449,7 +34449,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" } ] } @@ -34516,7 +34516,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -34589,7 +34589,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" } ] } @@ -34662,7 +34662,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" } ] } @@ -34726,7 +34726,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" } ] } @@ -34802,7 +34802,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -34885,7 +34885,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" } ] }, @@ -34966,7 +34966,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -35058,7 +35058,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -35131,7 +35131,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -35213,7 +35213,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -35296,7 +35296,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -35380,7 +35380,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -35475,7 +35475,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -35583,7 +35583,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -35667,7 +35667,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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" @@ -35758,7 +35758,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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" @@ -35829,7 +35829,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -35905,7 +35905,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" } ] }, @@ -36001,7 +36001,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 --include \\\n --header \"Accept: 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 '{ }'" } ] } @@ -36085,7 +36085,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\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\"" } ] } @@ -36155,7 +36155,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -36223,7 +36223,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" } ] }, @@ -36308,7 +36308,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36388,7 +36388,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -36486,7 +36486,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36571,7 +36571,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" } ] }, @@ -36657,7 +36657,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -36744,7 +36744,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -36820,7 +36820,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -36899,7 +36899,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36979,7 +36979,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" } ] }, @@ -37060,7 +37060,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37152,7 +37152,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -37247,7 +37247,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -37339,7 +37339,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37431,7 +37431,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37513,7 +37513,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37608,7 +37608,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -37700,7 +37700,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37780,7 +37780,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37856,7 +37856,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37942,7 +37942,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" } ] }, @@ -38042,7 +38042,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -38133,7 +38133,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38200,7 +38200,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38279,7 +38279,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38346,7 +38346,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38422,7 +38422,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38499,7 +38499,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -38585,7 +38585,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -38669,7 +38669,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -38748,7 +38748,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -38820,7 +38820,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -38915,7 +38915,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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" @@ -38983,7 +38983,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39063,7 +39063,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39154,7 +39154,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] } @@ -39233,7 +39233,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39331,7 +39331,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39417,7 +39417,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -39507,7 +39507,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -39603,7 +39603,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -39693,7 +39693,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39783,7 +39783,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39877,7 +39877,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -39962,7 +39962,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -40061,7 +40061,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -40150,7 +40150,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -40244,7 +40244,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40329,7 +40329,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -40417,7 +40417,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -40514,7 +40514,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40608,7 +40608,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -40697,7 +40697,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -40777,7 +40777,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -40856,7 +40856,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -40949,7 +40949,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -41041,7 +41041,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -41132,7 +41132,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41223,7 +41223,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -41315,7 +41315,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -41397,7 +41397,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -41491,7 +41491,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -41583,7 +41583,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -41686,7 +41686,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41788,7 +41788,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41887,7 +41887,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41969,7 +41969,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42063,7 +42063,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42145,7 +42145,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42239,7 +42239,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42328,7 +42328,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42426,7 +42426,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42527,7 +42527,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -42633,7 +42633,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -42733,7 +42733,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -42828,7 +42828,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -42940,7 +42940,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -43025,7 +43025,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -43110,7 +43110,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -43207,7 +43207,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -43311,7 +43311,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -43411,7 +43411,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -43597,7 +43597,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43689,7 +43689,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -43790,7 +43790,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43909,7 +43909,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -44007,7 +44007,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -44106,7 +44106,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -44219,7 +44219,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44308,7 +44308,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -44395,7 +44395,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -44490,7 +44490,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44577,7 +44577,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -44678,7 +44678,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -44756,7 +44756,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -44860,7 +44860,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -44952,7 +44952,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45047,7 +45047,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -45130,7 +45130,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -45212,7 +45212,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -45308,7 +45308,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -45404,7 +45404,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -45485,7 +45485,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -45574,7 +45574,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45677,7 +45677,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -45772,7 +45772,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -45862,7 +45862,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -45963,7 +45963,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46042,7 +46042,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -46170,7 +46170,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ], "x-sunset": "2025-06-01" @@ -46265,7 +46265,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46353,7 +46353,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46429,7 +46429,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -46518,7 +46518,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" } ] }, @@ -46596,7 +46596,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46697,7 +46697,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46767,7 +46767,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46855,7 +46855,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46937,7 +46937,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -47014,7 +47014,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47111,7 +47111,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47194,7 +47194,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47279,7 +47279,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47355,7 +47355,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" } ] }, @@ -47432,7 +47432,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47529,7 +47529,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47611,7 +47611,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -47699,7 +47699,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -47788,7 +47788,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47891,7 +47891,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47997,7 +47997,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -48073,7 +48073,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48313,7 +48313,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48405,7 +48405,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -48492,7 +48492,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48599,7 +48599,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48687,7 +48687,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48789,7 +48789,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48922,7 +48922,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49052,7 +49052,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49119,7 +49119,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49204,7 +49204,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49283,7 +49283,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49371,7 +49371,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49473,7 +49473,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49562,7 +49562,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49705,7 +49705,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49796,7 +49796,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49866,7 +49866,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49982,7 +49982,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50101,7 +50101,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50212,7 +50212,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50294,7 +50294,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50389,7 +50389,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" } ] }, @@ -50482,7 +50482,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50598,7 +50598,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -50711,7 +50711,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -50791,7 +50791,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -50875,7 +50875,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -50953,7 +50953,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -51031,7 +51031,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -51113,7 +51113,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ], "x-sunset": "2024-10-04" @@ -51206,7 +51206,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -51277,7 +51277,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51356,7 +51356,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51453,7 +51453,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" } ] }, @@ -51551,7 +51551,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51660,7 +51660,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51750,7 +51750,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -51841,7 +51841,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -51928,7 +51928,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52004,7 +52004,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52080,7 +52080,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -52144,7 +52144,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" } ] }, @@ -52209,7 +52209,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52285,7 +52285,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52349,7 +52349,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52413,7 +52413,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52480,7 +52480,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52547,7 +52547,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" } ] } @@ -52614,7 +52614,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52742,7 +52742,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52835,7 +52835,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52924,7 +52924,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53006,7 +53006,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" } ] }, @@ -53086,7 +53086,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53183,7 +53183,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53253,7 +53253,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53332,7 +53332,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53411,7 +53411,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" } ] }, @@ -53491,7 +53491,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53585,7 +53585,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53670,7 +53670,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53771,7 +53771,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53853,7 +53853,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53935,7 +53935,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54036,7 +54036,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54131,7 +54131,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -54224,7 +54224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54317,7 +54317,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54399,7 +54399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54469,7 +54469,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54548,7 +54548,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54629,7 +54629,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54720,7 +54720,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54810,7 +54810,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -54898,7 +54898,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54997,7 +54997,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55082,7 +55082,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55176,7 +55176,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -55271,7 +55271,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55385,7 +55385,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55489,7 +55489,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -55594,7 +55594,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55666,7 +55666,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55750,7 +55750,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55832,7 +55832,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55911,7 +55911,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55993,7 +55993,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -56076,7 +56076,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56152,7 +56152,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56230,7 +56230,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56317,7 +56317,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56404,7 +56404,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56530,7 +56530,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56617,7 +56617,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56701,7 +56701,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56836,7 +56836,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57078,7 +57078,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57174,7 +57174,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57294,7 +57294,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57430,7 +57430,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57503,7 +57503,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" } ] }, @@ -57574,7 +57574,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57657,7 +57657,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -57740,7 +57740,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57822,7 +57822,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57898,7 +57898,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57974,7 +57974,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58056,7 +58056,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58147,7 +58147,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58244,7 +58244,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58338,7 +58338,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58429,7 +58429,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58521,7 +58521,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58600,7 +58600,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58683,7 +58683,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58768,7 +58768,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" } ] }, @@ -58851,7 +58851,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58942,7 +58942,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59015,7 +59015,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59097,7 +59097,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59182,7 +59182,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59274,7 +59274,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59360,7 +59360,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" } ] }, @@ -59461,7 +59461,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59528,7 +59528,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59607,7 +59607,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59671,7 +59671,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" } ] } @@ -59738,7 +59738,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59819,7 +59819,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59898,7 +59898,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59992,7 +59992,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60074,7 +60074,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" } ] } @@ -60170,7 +60170,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -60260,7 +60260,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" } ] }, @@ -60345,7 +60345,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -60421,7 +60421,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" } ] }, @@ -60495,7 +60495,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" } ] }, @@ -60580,7 +60580,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -60660,7 +60660,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -60740,7 +60740,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -60823,7 +60823,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" } ] }, @@ -60904,7 +60904,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -60999,7 +60999,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -61091,7 +61091,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -61197,7 +61197,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -61297,7 +61297,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -61392,7 +61392,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -61470,7 +61470,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -61561,7 +61561,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -61676,7 +61676,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -61767,7 +61767,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -61840,7 +61840,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -61930,7 +61930,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -62015,7 +62015,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -62097,7 +62097,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] }, @@ -62179,7 +62179,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -62261,7 +62261,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" } ] }, @@ -62341,7 +62341,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -62435,7 +62435,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -62593,7 +62593,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -62663,7 +62663,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -62751,7 +62751,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -62832,7 +62832,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-01-01+csv\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -62905,7 +62905,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -62972,7 +62972,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" } ] }, @@ -63051,7 +63051,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -63124,7 +63124,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63206,7 +63206,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -63292,7 +63292,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63381,7 +63381,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -63467,7 +63467,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -63556,7 +63556,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" } ] }, @@ -63643,7 +63643,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63744,7 +63744,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -63842,7 +63842,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63946,7 +63946,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -64044,7 +64044,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -64126,7 +64126,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64211,7 +64211,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" } ] } @@ -64307,7 +64307,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -64385,7 +64385,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -64462,7 +64462,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64541,7 +64541,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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 a11ed2426a..360855966c 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 @@ -28332,8 +28332,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" /api/atlas/v2/alertConfigs/matchers/fieldNames: @@ -28402,8 +28402,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" /api/atlas/v2/clusters: @@ -28473,8 +28473,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" /api/atlas/v2/eventTypes: @@ -28544,8 +28544,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}: @@ -28613,8 +28613,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: @@ -28687,8 +28687,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: @@ -28769,8 +28769,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" get: @@ -28850,8 +28850,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" patch: @@ -28940,8 +28940,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -29015,8 +29015,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -29096,8 +29096,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -29179,8 +29179,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" get: @@ -29261,8 +29261,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" put: @@ -29352,8 +29352,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -29450,8 +29450,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: @@ -29532,8 +29532,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" x-sunset: "2025-01-01" @@ -29624,8 +29624,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -29699,8 +29699,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups: @@ -29772,8 +29772,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" post: @@ -29864,8 +29864,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -29937,8 +29937,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" get: @@ -30007,8 +30007,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" patch: @@ -30090,8 +30090,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30167,8 +30167,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" post: @@ -30256,8 +30256,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -30345,8 +30345,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" get: @@ -30428,8 +30428,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: @@ -30511,8 +30511,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alertConfigs: @@ -30586,8 +30586,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" post: @@ -30668,8 +30668,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -30752,8 +30752,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" get: @@ -30835,8 +30835,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" patch: @@ -30929,8 +30929,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31027,8 +31027,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31116,8 +31116,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alerts: @@ -31202,8 +31202,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" /api/atlas/v2/groups/{groupId}/alerts/{alertId}: @@ -31285,8 +31285,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" patch: @@ -31379,8 +31379,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31468,8 +31468,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/apiKeys: @@ -31543,8 +31543,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" post: @@ -31620,8 +31620,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31705,8 +31705,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" patch: @@ -31796,8 +31796,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31886,8 +31886,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31957,8 +31957,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" patch: @@ -32036,8 +32036,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32107,8 +32107,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" patch: @@ -32184,8 +32184,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32259,8 +32259,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" x-sunset: "2025-05-30" @@ -32344,8 +32344,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32429,8 +32429,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" get: @@ -32509,8 +32509,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-05-30" @@ -32582,8 +32582,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" x-sunset: "2024-10-01" @@ -32673,8 +32673,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32745,8 +32745,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" post: @@ -32825,8 +32825,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32913,8 +32913,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: @@ -32991,8 +32991,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" patch: @@ -33084,8 +33084,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33165,8 +33165,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" x-sunset: "2025-06-01" @@ -33252,8 +33252,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33343,8 +33343,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" x-sunset: "2025-06-01" @@ -33426,8 +33426,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" x-sunset: "2025-06-01" @@ -33520,8 +33520,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33604,8 +33604,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -33695,8 +33695,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33780,8 +33780,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: @@ -33861,8 +33861,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -33956,8 +33956,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34047,8 +34047,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -34133,8 +34133,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: @@ -34213,8 +34213,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" x-sunset: "2025-08-05" @@ -34292,8 +34292,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-08-05" @@ -34385,8 +34385,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34471,8 +34471,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -34562,8 +34562,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34653,8 +34653,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -34741,8 +34741,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -34838,8 +34838,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34927,8 +34927,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -35015,8 +35015,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: @@ -35095,8 +35095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: @@ -35190,8 +35190,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35285,8 +35285,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35367,8 +35367,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: @@ -35456,8 +35456,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: @@ -35536,8 +35536,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: @@ -35625,8 +35625,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: @@ -35707,8 +35707,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: @@ -35799,8 +35799,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: @@ -35894,8 +35894,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35993,8 +35993,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -36087,8 +36087,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" x-sunset: "2025-06-01" @@ -36178,8 +36178,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -36282,8 +36282,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -36367,8 +36367,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -36450,8 +36450,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" x-sunset: "2025-06-01" @@ -36543,8 +36543,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36640,8 +36640,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" x-sunset: "2025-06-01" @@ -36735,8 +36735,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36893,8 +36893,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36979,8 +36979,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -37074,8 +37074,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37168,8 +37168,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" get: @@ -37261,8 +37261,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -37365,8 +37365,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -37476,8 +37476,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" @@ -37562,8 +37562,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" get: @@ -37646,8 +37646,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -37737,8 +37737,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37823,8 +37823,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -37919,8 +37919,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38001,8 +38001,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38099,8 +38099,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -38188,8 +38188,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38283,8 +38283,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: @@ -38364,8 +38364,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" x-sunset: "2026-03-01" @@ -38445,8 +38445,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -38537,8 +38537,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38631,8 +38631,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38716,8 +38716,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -38806,8 +38806,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38900,8 +38900,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: @@ -38990,8 +38990,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" get: @@ -39077,8 +39077,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -39173,8 +39173,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -39253,8 +39253,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: @@ -39368,8 +39368,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" @@ -39454,8 +39454,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: @@ -39540,8 +39540,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39628,8 +39628,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39715,8 +39715,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" post: @@ -39800,8 +39800,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39887,8 +39887,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" get: @@ -39965,8 +39965,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" patch: @@ -40060,8 +40060,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40134,8 +40134,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" /api/atlas/v2/groups/{groupId}/customDBRoles/roles: @@ -40205,8 +40205,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" post: @@ -40290,8 +40290,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40371,8 +40371,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" get: @@ -40447,8 +40447,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -40538,8 +40538,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40620,8 +40620,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" post: @@ -40703,8 +40703,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40780,8 +40780,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" get: @@ -40857,8 +40857,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" patch: @@ -40948,8 +40948,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41029,8 +41029,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: @@ -41122,8 +41122,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" get: @@ -41215,8 +41215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41320,8 +41320,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41422,8 +41422,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" @@ -41495,8 +41495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" post: @@ -41671,8 +41671,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41772,8 +41772,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" get: @@ -41868,8 +41868,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41979,8 +41979,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42061,8 +42061,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -42161,8 +42161,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42278,8 +42278,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: @@ -42390,8 +42390,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/encryptionAtRest: @@ -42462,8 +42462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" patch: @@ -42557,8 +42557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42636,8 +42636,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -42721,8 +42721,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42816,8 +42816,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" get: @@ -42901,8 +42901,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/events: @@ -43027,8 +43027,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}: @@ -43116,8 +43116,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: @@ -43187,8 +43187,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: @@ -43288,8 +43288,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: @@ -43388,8 +43388,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: @@ -43487,8 +43487,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/integrations: @@ -43563,8 +43563,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: @@ -43654,8 +43654,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" get: @@ -43744,8 +43744,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" post: @@ -43848,8 +43848,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -43952,8 +43952,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44032,8 +44032,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" x-sunset: "2024-10-04" @@ -44115,8 +44115,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44196,8 +44196,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44277,8 +44277,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" x-sunset: "2024-10-04" @@ -44358,8 +44358,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" x-sunset: "2024-10-04" @@ -44449,8 +44449,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44523,8 +44523,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" /api/atlas/v2/groups/{groupId}/limits: @@ -44600,8 +44600,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" /api/atlas/v2/groups/{groupId}/limits/{limitName}: @@ -44709,8 +44709,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" get: @@ -44819,8 +44819,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" patch: @@ -44941,8 +44941,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45037,8 +45037,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45114,8 +45114,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: @@ -45190,8 +45190,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45279,8 +45279,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45366,8 +45366,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/maintenanceWindow: @@ -45434,8 +45434,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" get: @@ -45502,8 +45502,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: @@ -45580,8 +45580,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45652,8 +45652,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45724,8 +45724,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45795,8 +45795,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: @@ -45864,8 +45864,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: @@ -45935,8 +45935,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46047,8 +46047,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" /api/atlas/v2/groups/{groupId}/peers: @@ -46131,8 +46131,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" post: @@ -46217,8 +46217,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46299,8 +46299,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" get: @@ -46378,8 +46378,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" patch: @@ -46470,8 +46470,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46544,8 +46544,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: @@ -46624,8 +46624,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46705,8 +46705,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" get: @@ -46784,8 +46784,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" patch: @@ -46875,8 +46875,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46959,8 +46959,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: @@ -47049,8 +47049,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: @@ -47131,8 +47131,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47215,8 +47215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47307,8 +47307,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: @@ -47397,8 +47397,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" get: @@ -47486,8 +47486,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: @@ -47575,8 +47575,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47659,8 +47659,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: @@ -47748,8 +47748,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" get: @@ -47838,8 +47838,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: @@ -47942,8 +47942,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48040,8 +48040,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -48137,8 +48137,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: @@ -48218,8 +48218,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48291,8 +48291,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" patch: @@ -48370,8 +48370,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48452,8 +48452,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -48544,8 +48544,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48633,8 +48633,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -48719,8 +48719,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -48814,8 +48814,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48889,8 +48889,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" patch: @@ -48972,8 +48972,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49050,8 +49050,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" post: @@ -49148,8 +49148,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49230,8 +49230,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" get: @@ -49311,8 +49311,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes: @@ -49383,8 +49383,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}: @@ -49460,8 +49460,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: @@ -49540,8 +49540,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: @@ -49623,8 +49623,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: @@ -49732,8 +49732,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: @@ -49812,8 +49812,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: @@ -49894,8 +49894,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: @@ -50019,8 +50019,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: @@ -50255,8 +50255,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: @@ -50352,8 +50352,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: @@ -50466,8 +50466,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -50587,8 +50587,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pushBasedLogExport: @@ -50660,8 +50660,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" get: @@ -50732,8 +50732,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" patch: @@ -50814,8 +50814,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50898,8 +50898,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50983,8 +50983,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -51062,8 +51062,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" /api/atlas/v2/groups/{groupId}/serverless: @@ -51134,8 +51134,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" post: @@ -51215,8 +51215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51300,8 +51300,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -51392,8 +51392,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51483,8 +51483,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: @@ -51566,8 +51566,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: @@ -51655,8 +51655,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: @@ -51733,8 +51733,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -51817,8 +51817,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51901,8 +51901,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" get: @@ -51982,8 +51982,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" patch: @@ -52070,8 +52070,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -52145,8 +52145,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: @@ -52226,8 +52226,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52306,8 +52306,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" post: @@ -52394,8 +52394,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52480,8 +52480,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" patch: @@ -52575,8 +52575,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -52646,8 +52646,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" patch: @@ -52728,8 +52728,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52801,8 +52801,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: @@ -52870,8 +52870,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: @@ -52950,8 +52950,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53030,8 +53030,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/users: @@ -53114,8 +53114,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" /api/atlas/v2/groups/{groupId}/users/{userId}: @@ -53194,8 +53194,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" /api/atlas/v2/groups/{groupId}/users/{userId}/roles: @@ -53285,8 +53285,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53369,8 +53369,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" /api/atlas/v2/orgs: @@ -53451,8 +53451,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" post: @@ -53535,8 +53535,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -53618,8 +53618,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" get: @@ -53692,8 +53692,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" patch: @@ -53775,8 +53775,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53852,8 +53852,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" post: @@ -53932,8 +53932,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54015,8 +54015,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" get: @@ -54095,8 +54095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" patch: @@ -54186,8 +54186,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -54272,8 +54272,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -54367,8 +54367,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54462,8 +54462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" get: @@ -54552,8 +54552,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: @@ -54631,8 +54631,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54720,8 +54720,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/events: @@ -54824,8 +54824,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" /api/atlas/v2/orgs/{orgId}/events/{eventId}: @@ -54913,8 +54913,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" /api/atlas/v2/orgs/{orgId}/federationSettings: @@ -54986,8 +54986,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" /api/atlas/v2/orgs/{orgId}/groups: @@ -55075,8 +55075,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" /api/atlas/v2/orgs/{orgId}/invites: @@ -55156,8 +55156,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" patch: @@ -55237,8 +55237,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55320,8 +55320,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55401,8 +55401,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" get: @@ -55481,8 +55481,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" patch: @@ -55571,8 +55571,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55706,8 +55706,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: @@ -55792,8 +55792,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: @@ -55879,8 +55879,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/pending: @@ -55950,8 +55950,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: @@ -56023,8 +56023,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: @@ -56093,8 +56093,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" post: @@ -56172,8 +56172,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56247,8 +56247,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" patch: @@ -56328,8 +56328,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56409,8 +56409,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" post: @@ -56495,8 +56495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56582,8 +56582,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" get: @@ -56666,8 +56666,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" patch: @@ -56761,8 +56761,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56852,8 +56852,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -56949,8 +56949,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57043,8 +57043,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: @@ -57125,8 +57125,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/users: @@ -57201,8 +57201,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" /api/atlas/v2/orgs/{orgId}/users/{userId}: @@ -57284,8 +57284,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: @@ -57375,8 +57375,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57461,8 +57461,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -57542,8 +57542,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" /api/atlas/v2/users/byName/{userName}: @@ -57619,8 +57619,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" servers: 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 a042f2a650..2dd6ea6296 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 @@ -34894,7 +34894,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" } ] } @@ -34961,7 +34961,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -35034,7 +35034,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" } ] } @@ -35107,7 +35107,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" } ] } @@ -35171,7 +35171,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" } ] } @@ -35247,7 +35247,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -35330,7 +35330,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" } ] }, @@ -35411,7 +35411,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -35503,7 +35503,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -35576,7 +35576,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -35658,7 +35658,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -35741,7 +35741,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -35825,7 +35825,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -35920,7 +35920,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -36028,7 +36028,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36112,7 +36112,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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" @@ -36203,7 +36203,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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" @@ -36274,7 +36274,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36350,7 +36350,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" } ] }, @@ -36446,7 +36446,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 --include \\\n --header \"Accept: 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 '{ }'" } ] } @@ -36530,7 +36530,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\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\"" } ] } @@ -36600,7 +36600,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -36668,7 +36668,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" } ] }, @@ -36753,7 +36753,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36839,7 +36839,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -36919,7 +36919,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37017,7 +37017,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37102,7 +37102,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" } ] }, @@ -37188,7 +37188,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37275,7 +37275,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37351,7 +37351,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37430,7 +37430,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37510,7 +37510,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" } ] }, @@ -37591,7 +37591,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37683,7 +37683,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -37778,7 +37778,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -37870,7 +37870,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37962,7 +37962,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -38044,7 +38044,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38139,7 +38139,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -38231,7 +38231,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -38311,7 +38311,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38387,7 +38387,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38473,7 +38473,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" } ] }, @@ -38573,7 +38573,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -38664,7 +38664,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38731,7 +38731,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38810,7 +38810,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38877,7 +38877,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38953,7 +38953,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39030,7 +39030,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -39116,7 +39116,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -39200,7 +39200,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -39279,7 +39279,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -39351,7 +39351,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -39446,7 +39446,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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" @@ -39514,7 +39514,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39594,7 +39594,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39685,7 +39685,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] } @@ -39764,7 +39764,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39862,7 +39862,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39948,7 +39948,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -40038,7 +40038,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -40134,7 +40134,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -40224,7 +40224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40314,7 +40314,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40407,7 +40407,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" } ] }, @@ -40491,7 +40491,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ], "x-sunset": "2026-03-01" @@ -40590,7 +40590,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -40679,7 +40679,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -40773,7 +40773,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40858,7 +40858,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -40946,7 +40946,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -41043,7 +41043,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41137,7 +41137,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -41226,7 +41226,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -41306,7 +41306,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -41385,7 +41385,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -41478,7 +41478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -41570,7 +41570,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -41661,7 +41661,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41752,7 +41752,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -41844,7 +41844,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -41926,7 +41926,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42020,7 +42020,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -42112,7 +42112,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -42215,7 +42215,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42317,7 +42317,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42416,7 +42416,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42498,7 +42498,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42592,7 +42592,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42674,7 +42674,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42768,7 +42768,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42857,7 +42857,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42955,7 +42955,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -43056,7 +43056,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -43162,7 +43162,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -43262,7 +43262,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -43357,7 +43357,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -43469,7 +43469,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -43554,7 +43554,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -43639,7 +43639,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -43736,7 +43736,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -43840,7 +43840,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -43940,7 +43940,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -44126,7 +44126,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44218,7 +44218,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -44319,7 +44319,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44438,7 +44438,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -44536,7 +44536,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -44635,7 +44635,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -44748,7 +44748,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44837,7 +44837,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -44924,7 +44924,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -45019,7 +45019,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45106,7 +45106,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -45207,7 +45207,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -45284,7 +45284,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45387,7 +45387,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -45479,7 +45479,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45574,7 +45574,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -45657,7 +45657,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -45739,7 +45739,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -45835,7 +45835,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -45931,7 +45931,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -46012,7 +46012,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -46101,7 +46101,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46204,7 +46204,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -46299,7 +46299,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -46389,7 +46389,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -46490,7 +46490,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46569,7 +46569,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -46696,7 +46696,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -46790,7 +46790,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46878,7 +46878,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46954,7 +46954,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -47043,7 +47043,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" } ] }, @@ -47121,7 +47121,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47222,7 +47222,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47292,7 +47292,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47380,7 +47380,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47462,7 +47462,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -47539,7 +47539,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47636,7 +47636,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47719,7 +47719,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47804,7 +47804,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47880,7 +47880,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" } ] }, @@ -47957,7 +47957,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48054,7 +48054,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48136,7 +48136,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -48224,7 +48224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -48313,7 +48313,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48416,7 +48416,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48522,7 +48522,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -48598,7 +48598,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48838,7 +48838,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48930,7 +48930,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49017,7 +49017,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49124,7 +49124,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49212,7 +49212,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49314,7 +49314,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49447,7 +49447,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49577,7 +49577,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49644,7 +49644,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49729,7 +49729,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49808,7 +49808,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49896,7 +49896,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49998,7 +49998,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -50087,7 +50087,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50230,7 +50230,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50321,7 +50321,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50391,7 +50391,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50507,7 +50507,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50626,7 +50626,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50737,7 +50737,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50819,7 +50819,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50914,7 +50914,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" } ] }, @@ -51007,7 +51007,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51123,7 +51123,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -51236,7 +51236,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -51316,7 +51316,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -51400,7 +51400,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -51478,7 +51478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -51556,7 +51556,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -51638,7 +51638,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -51731,7 +51731,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -51802,7 +51802,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51881,7 +51881,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51978,7 +51978,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" } ] }, @@ -52076,7 +52076,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52185,7 +52185,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52275,7 +52275,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -52366,7 +52366,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -52453,7 +52453,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52529,7 +52529,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52605,7 +52605,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -52669,7 +52669,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" } ] }, @@ -52734,7 +52734,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52810,7 +52810,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52874,7 +52874,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52938,7 +52938,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53005,7 +53005,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53072,7 +53072,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" } ] } @@ -53139,7 +53139,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53267,7 +53267,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53360,7 +53360,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53449,7 +53449,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53531,7 +53531,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" } ] }, @@ -53611,7 +53611,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53708,7 +53708,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53778,7 +53778,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53857,7 +53857,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53936,7 +53936,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" } ] }, @@ -54016,7 +54016,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54110,7 +54110,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54195,7 +54195,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54296,7 +54296,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54378,7 +54378,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54460,7 +54460,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54561,7 +54561,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54656,7 +54656,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -54749,7 +54749,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54842,7 +54842,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54924,7 +54924,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54994,7 +54994,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55073,7 +55073,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55154,7 +55154,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55245,7 +55245,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55335,7 +55335,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -55423,7 +55423,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55522,7 +55522,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55607,7 +55607,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55701,7 +55701,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -55796,7 +55796,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55910,7 +55910,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56014,7 +56014,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -56119,7 +56119,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56191,7 +56191,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56275,7 +56275,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56357,7 +56357,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56436,7 +56436,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56518,7 +56518,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -56601,7 +56601,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56677,7 +56677,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56755,7 +56755,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56842,7 +56842,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56929,7 +56929,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57055,7 +57055,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57142,7 +57142,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57226,7 +57226,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57361,7 +57361,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57603,7 +57603,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57699,7 +57699,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57819,7 +57819,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57955,7 +57955,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58028,7 +58028,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" } ] }, @@ -58099,7 +58099,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58182,7 +58182,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -58265,7 +58265,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58347,7 +58347,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58423,7 +58423,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58499,7 +58499,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58581,7 +58581,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58672,7 +58672,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58769,7 +58769,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58863,7 +58863,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58954,7 +58954,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59046,7 +59046,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59125,7 +59125,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59208,7 +59208,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59293,7 +59293,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" } ] }, @@ -59376,7 +59376,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59467,7 +59467,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59540,7 +59540,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59622,7 +59622,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59695,7 +59695,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59774,7 +59774,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59856,7 +59856,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" } ] }, @@ -59941,7 +59941,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60035,7 +60035,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60144,7 +60144,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -60229,7 +60229,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60320,7 +60320,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60411,7 +60411,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -60494,7 +60494,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60597,7 +60597,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60682,7 +60682,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60774,7 +60774,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60860,7 +60860,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" } ] }, @@ -60961,7 +60961,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61028,7 +61028,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61107,7 +61107,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61171,7 +61171,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" } ] } @@ -61238,7 +61238,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61319,7 +61319,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61398,7 +61398,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61492,7 +61492,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61574,7 +61574,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" } ] } @@ -61670,7 +61670,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -61760,7 +61760,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" } ] }, @@ -61845,7 +61845,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -61921,7 +61921,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" } ] }, @@ -61995,7 +61995,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" } ] }, @@ -62080,7 +62080,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -62160,7 +62160,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -62240,7 +62240,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -62323,7 +62323,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" } ] }, @@ -62404,7 +62404,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -62499,7 +62499,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -62591,7 +62591,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -62697,7 +62697,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -62797,7 +62797,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -62892,7 +62892,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -62970,7 +62970,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -63061,7 +63061,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -63176,7 +63176,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -63267,7 +63267,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -63340,7 +63340,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -63430,7 +63430,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -63515,7 +63515,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63597,7 +63597,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] }, @@ -63679,7 +63679,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -63761,7 +63761,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" } ] }, @@ -63841,7 +63841,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63935,7 +63935,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -64093,7 +64093,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64163,7 +64163,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64251,7 +64251,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64332,7 +64332,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-02-01+csv\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -64405,7 +64405,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64472,7 +64472,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" } ] }, @@ -64551,7 +64551,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -64624,7 +64624,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -64706,7 +64706,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -64792,7 +64792,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -64881,7 +64881,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -64967,7 +64967,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -65056,7 +65056,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" } ] }, @@ -65143,7 +65143,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -65244,7 +65244,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -65342,7 +65342,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -65446,7 +65446,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -65544,7 +65544,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -65626,7 +65626,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -65711,7 +65711,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-02-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" } ] } @@ -65807,7 +65807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -65885,7 +65885,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -65962,7 +65962,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66041,7 +66041,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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 bfc8c0b8ad..743ca4d2e6 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 @@ -28696,8 +28696,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" /api/atlas/v2/alertConfigs/matchers/fieldNames: @@ -28766,8 +28766,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" /api/atlas/v2/clusters: @@ -28837,8 +28837,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" /api/atlas/v2/eventTypes: @@ -28908,8 +28908,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}: @@ -28977,8 +28977,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: @@ -29051,8 +29051,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: @@ -29133,8 +29133,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" get: @@ -29214,8 +29214,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" patch: @@ -29304,8 +29304,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -29379,8 +29379,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -29460,8 +29460,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -29543,8 +29543,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" get: @@ -29625,8 +29625,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" put: @@ -29716,8 +29716,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -29814,8 +29814,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: @@ -29896,8 +29896,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" x-sunset: "2025-01-01" @@ -29988,8 +29988,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30063,8 +30063,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups: @@ -30136,8 +30136,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" post: @@ -30228,8 +30228,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -30301,8 +30301,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" get: @@ -30371,8 +30371,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" patch: @@ -30454,8 +30454,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30539,8 +30539,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -30616,8 +30616,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" post: @@ -30705,8 +30705,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -30794,8 +30794,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" get: @@ -30877,8 +30877,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: @@ -30960,8 +30960,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alertConfigs: @@ -31035,8 +31035,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" post: @@ -31117,8 +31117,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31201,8 +31201,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" get: @@ -31284,8 +31284,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" patch: @@ -31378,8 +31378,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31476,8 +31476,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31565,8 +31565,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alerts: @@ -31651,8 +31651,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" /api/atlas/v2/groups/{groupId}/alerts/{alertId}: @@ -31734,8 +31734,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" patch: @@ -31828,8 +31828,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31917,8 +31917,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/apiKeys: @@ -31992,8 +31992,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" post: @@ -32069,8 +32069,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32154,8 +32154,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" patch: @@ -32245,8 +32245,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32335,8 +32335,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32406,8 +32406,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" patch: @@ -32485,8 +32485,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32556,8 +32556,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" patch: @@ -32633,8 +32633,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32708,8 +32708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" x-sunset: "2025-05-30" @@ -32793,8 +32793,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32878,8 +32878,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" get: @@ -32958,8 +32958,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-05-30" @@ -33031,8 +33031,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" @@ -33122,8 +33122,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33194,8 +33194,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" post: @@ -33274,8 +33274,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33362,8 +33362,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: @@ -33440,8 +33440,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" patch: @@ -33533,8 +33533,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33614,8 +33614,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" x-sunset: "2026-03-01" @@ -33701,8 +33701,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33791,8 +33791,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" get: @@ -33873,8 +33873,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" x-sunset: "2026-03-01" @@ -33967,8 +33967,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34051,8 +34051,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -34142,8 +34142,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34227,8 +34227,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: @@ -34308,8 +34308,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -34403,8 +34403,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34494,8 +34494,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -34580,8 +34580,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: @@ -34660,8 +34660,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" x-sunset: "2025-08-05" @@ -34739,8 +34739,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-08-05" @@ -34832,8 +34832,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34918,8 +34918,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -35009,8 +35009,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35100,8 +35100,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -35188,8 +35188,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -35285,8 +35285,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35374,8 +35374,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -35462,8 +35462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: @@ -35542,8 +35542,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: @@ -35637,8 +35637,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35732,8 +35732,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35814,8 +35814,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: @@ -35903,8 +35903,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: @@ -35983,8 +35983,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: @@ -36072,8 +36072,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: @@ -36154,8 +36154,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: @@ -36246,8 +36246,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: @@ -36341,8 +36341,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36440,8 +36440,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -36534,8 +36534,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" x-sunset: "2025-06-01" @@ -36625,8 +36625,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -36729,8 +36729,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -36814,8 +36814,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -36897,8 +36897,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" x-sunset: "2026-03-01" @@ -36990,8 +36990,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37087,8 +37087,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" x-sunset: "2026-03-01" @@ -37182,8 +37182,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37340,8 +37340,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37426,8 +37426,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -37521,8 +37521,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37615,8 +37615,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" get: @@ -37708,8 +37708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -37812,8 +37812,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -37923,8 +37923,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" @@ -38009,8 +38009,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" get: @@ -38093,8 +38093,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -38184,8 +38184,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38270,8 +38270,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -38366,8 +38366,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38447,8 +38447,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38544,8 +38544,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -38633,8 +38633,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38728,8 +38728,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: @@ -38809,8 +38809,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" x-sunset: "2026-03-01" @@ -38890,8 +38890,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -38982,8 +38982,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39076,8 +39076,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39161,8 +39161,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -39251,8 +39251,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39345,8 +39345,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: @@ -39435,8 +39435,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" get: @@ -39522,8 +39522,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -39618,8 +39618,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -39698,8 +39698,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: @@ -39812,8 +39812,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" @@ -39897,8 +39897,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: @@ -39983,8 +39983,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40071,8 +40071,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40158,8 +40158,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" post: @@ -40243,8 +40243,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40330,8 +40330,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" get: @@ -40408,8 +40408,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" patch: @@ -40503,8 +40503,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40577,8 +40577,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -40648,8 +40648,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" post: @@ -40733,8 +40733,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40814,8 +40814,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" get: @@ -40890,8 +40890,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -40981,8 +40981,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41063,8 +41063,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" post: @@ -41146,8 +41146,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41223,8 +41223,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" get: @@ -41300,8 +41300,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" patch: @@ -41391,8 +41391,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41472,8 +41472,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: @@ -41565,8 +41565,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" get: @@ -41658,8 +41658,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41763,8 +41763,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41865,8 +41865,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" @@ -41938,8 +41938,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" post: @@ -42114,8 +42114,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42215,8 +42215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" get: @@ -42311,8 +42311,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42422,8 +42422,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42504,8 +42504,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -42604,8 +42604,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42721,8 +42721,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: @@ -42833,8 +42833,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/encryptionAtRest: @@ -42905,8 +42905,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" patch: @@ -43000,8 +43000,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43079,8 +43079,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -43164,8 +43164,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43259,8 +43259,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" get: @@ -43344,8 +43344,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/events: @@ -43470,8 +43470,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" /api/atlas/v2/groups/{groupId}/events/{eventId}: @@ -43559,8 +43559,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: @@ -43630,8 +43630,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: @@ -43731,8 +43731,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: @@ -43831,8 +43831,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: @@ -43930,8 +43930,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/integrations: @@ -44006,8 +44006,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: @@ -44097,8 +44097,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" get: @@ -44187,8 +44187,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" post: @@ -44291,8 +44291,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44395,8 +44395,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44475,8 +44475,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" @@ -44558,8 +44558,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44639,8 +44639,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44720,8 +44720,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" x-sunset: "2024-10-04" @@ -44801,8 +44801,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" x-sunset: "2024-10-04" @@ -44892,8 +44892,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44966,8 +44966,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" /api/atlas/v2/groups/{groupId}/limits: @@ -45043,8 +45043,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" /api/atlas/v2/groups/{groupId}/limits/{limitName}: @@ -45152,8 +45152,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" get: @@ -45262,8 +45262,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" patch: @@ -45384,8 +45384,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45480,8 +45480,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45557,8 +45557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: @@ -45633,8 +45633,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45722,8 +45722,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45809,8 +45809,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/maintenanceWindow: @@ -45877,8 +45877,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" get: @@ -45945,8 +45945,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: @@ -46023,8 +46023,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46095,8 +46095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46167,8 +46167,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46238,8 +46238,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: @@ -46307,8 +46307,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: @@ -46378,8 +46378,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46490,8 +46490,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" /api/atlas/v2/groups/{groupId}/peers: @@ -46574,8 +46574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" post: @@ -46660,8 +46660,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46742,8 +46742,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" get: @@ -46821,8 +46821,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" patch: @@ -46913,8 +46913,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46987,8 +46987,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: @@ -47067,8 +47067,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47148,8 +47148,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" get: @@ -47227,8 +47227,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" patch: @@ -47318,8 +47318,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -47402,8 +47402,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: @@ -47492,8 +47492,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: @@ -47574,8 +47574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47658,8 +47658,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47750,8 +47750,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: @@ -47840,8 +47840,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" get: @@ -47929,8 +47929,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: @@ -48018,8 +48018,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48102,8 +48102,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: @@ -48191,8 +48191,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" get: @@ -48281,8 +48281,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: @@ -48385,8 +48385,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48483,8 +48483,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -48580,8 +48580,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: @@ -48661,8 +48661,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48734,8 +48734,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" patch: @@ -48813,8 +48813,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48895,8 +48895,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -48987,8 +48987,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49076,8 +49076,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -49162,8 +49162,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -49257,8 +49257,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -49332,8 +49332,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" patch: @@ -49415,8 +49415,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49493,8 +49493,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" post: @@ -49591,8 +49591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49673,8 +49673,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" get: @@ -49754,8 +49754,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes: @@ -49826,8 +49826,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}: @@ -49903,8 +49903,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: @@ -49983,8 +49983,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: @@ -50066,8 +50066,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: @@ -50175,8 +50175,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: @@ -50255,8 +50255,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: @@ -50337,8 +50337,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: @@ -50462,8 +50462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: @@ -50698,8 +50698,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: @@ -50795,8 +50795,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: @@ -50909,8 +50909,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: @@ -51030,8 +51030,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pushBasedLogExport: @@ -51103,8 +51103,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" get: @@ -51175,8 +51175,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" patch: @@ -51257,8 +51257,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51341,8 +51341,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51426,8 +51426,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -51505,8 +51505,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" /api/atlas/v2/groups/{groupId}/serverless: @@ -51577,8 +51577,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" post: @@ -51658,8 +51658,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51743,8 +51743,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -51835,8 +51835,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51926,8 +51926,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: @@ -52009,8 +52009,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: @@ -52098,8 +52098,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: @@ -52176,8 +52176,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -52260,8 +52260,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52344,8 +52344,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" get: @@ -52425,8 +52425,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" patch: @@ -52513,8 +52513,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -52588,8 +52588,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: @@ -52669,8 +52669,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52742,8 +52742,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" post: @@ -52821,8 +52821,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52902,8 +52902,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" get: @@ -52984,8 +52984,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" patch: @@ -53073,8 +53073,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53176,8 +53176,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" @@ -53256,8 +53256,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -53343,8 +53343,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53430,8 +53430,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" get: @@ -53511,8 +53511,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -53606,8 +53606,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53686,8 +53686,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" post: @@ -53774,8 +53774,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53860,8 +53860,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" patch: @@ -53955,8 +53955,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -54026,8 +54026,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" patch: @@ -54108,8 +54108,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54181,8 +54181,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: @@ -54250,8 +54250,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: @@ -54330,8 +54330,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54410,8 +54410,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/users: @@ -54494,8 +54494,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" /api/atlas/v2/groups/{groupId}/users/{userId}: @@ -54574,8 +54574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" /api/atlas/v2/groups/{groupId}/users/{userId}/roles: @@ -54665,8 +54665,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54749,8 +54749,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" /api/atlas/v2/orgs: @@ -54831,8 +54831,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" post: @@ -54915,8 +54915,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -54998,8 +54998,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" get: @@ -55072,8 +55072,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" patch: @@ -55155,8 +55155,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55232,8 +55232,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" post: @@ -55312,8 +55312,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55395,8 +55395,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" get: @@ -55475,8 +55475,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" patch: @@ -55566,8 +55566,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55652,8 +55652,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -55747,8 +55747,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55842,8 +55842,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" get: @@ -55932,8 +55932,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: @@ -56011,8 +56011,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56100,8 +56100,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/events: @@ -56204,8 +56204,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" /api/atlas/v2/orgs/{orgId}/events/{eventId}: @@ -56293,8 +56293,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" /api/atlas/v2/orgs/{orgId}/federationSettings: @@ -56366,8 +56366,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" /api/atlas/v2/orgs/{orgId}/groups: @@ -56455,8 +56455,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" /api/atlas/v2/orgs/{orgId}/invites: @@ -56536,8 +56536,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" patch: @@ -56617,8 +56617,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56700,8 +56700,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56781,8 +56781,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" get: @@ -56861,8 +56861,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" patch: @@ -56951,8 +56951,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57086,8 +57086,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: @@ -57172,8 +57172,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: @@ -57259,8 +57259,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/pending: @@ -57330,8 +57330,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: @@ -57403,8 +57403,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: @@ -57473,8 +57473,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" post: @@ -57552,8 +57552,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57627,8 +57627,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" patch: @@ -57708,8 +57708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57789,8 +57789,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" post: @@ -57875,8 +57875,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57962,8 +57962,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" get: @@ -58046,8 +58046,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" patch: @@ -58141,8 +58141,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -58232,8 +58232,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -58329,8 +58329,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58423,8 +58423,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: @@ -58505,8 +58505,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/users: @@ -58581,8 +58581,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" /api/atlas/v2/orgs/{orgId}/users/{userId}: @@ -58664,8 +58664,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: @@ -58755,8 +58755,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58841,8 +58841,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -58922,8 +58922,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" /api/atlas/v2/users/byName/{userName}: @@ -58999,8 +58999,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-02-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" servers: 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 cc50636cce..4bfe383fbf 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 @@ -35431,7 +35431,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" } ] } @@ -35498,7 +35498,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -35571,7 +35571,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" } ] } @@ -35644,7 +35644,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" } ] } @@ -35708,7 +35708,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" } ] } @@ -35784,7 +35784,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -35867,7 +35867,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" } ] }, @@ -35948,7 +35948,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -36040,7 +36040,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -36113,7 +36113,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -36195,7 +36195,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -36278,7 +36278,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -36362,7 +36362,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -36457,7 +36457,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -36565,7 +36565,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36649,7 +36649,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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" @@ -36740,7 +36740,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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" @@ -36811,7 +36811,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36887,7 +36887,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" } ] }, @@ -36983,7 +36983,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 --include \\\n --header \"Accept: 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 '{ }'" } ] } @@ -37067,7 +37067,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\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\"" } ] } @@ -37137,7 +37137,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -37205,7 +37205,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" } ] }, @@ -37290,7 +37290,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37376,7 +37376,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37456,7 +37456,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37554,7 +37554,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -37639,7 +37639,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" } ] }, @@ -37725,7 +37725,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37812,7 +37812,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -37888,7 +37888,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -37967,7 +37967,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38047,7 +38047,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" } ] }, @@ -38128,7 +38128,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38220,7 +38220,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -38315,7 +38315,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -38407,7 +38407,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -38499,7 +38499,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -38581,7 +38581,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38676,7 +38676,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -38768,7 +38768,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -38848,7 +38848,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38924,7 +38924,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39010,7 +39010,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" } ] }, @@ -39110,7 +39110,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -39201,7 +39201,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39268,7 +39268,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39347,7 +39347,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39414,7 +39414,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39490,7 +39490,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39567,7 +39567,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -39653,7 +39653,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -39737,7 +39737,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -39816,7 +39816,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -39887,7 +39887,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39979,7 +39979,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -40046,7 +40046,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40126,7 +40126,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40217,7 +40217,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] } @@ -40296,7 +40296,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40394,7 +40394,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40480,7 +40480,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -40570,7 +40570,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -40666,7 +40666,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -40756,7 +40756,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40846,7 +40846,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40939,7 +40939,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" } ] }, @@ -41023,7 +41023,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -41122,7 +41122,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -41211,7 +41211,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -41305,7 +41305,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41390,7 +41390,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -41478,7 +41478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -41575,7 +41575,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41669,7 +41669,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -41758,7 +41758,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -41838,7 +41838,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -41917,7 +41917,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -42010,7 +42010,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -42102,7 +42102,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -42193,7 +42193,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42284,7 +42284,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -42376,7 +42376,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42458,7 +42458,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42552,7 +42552,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -42644,7 +42644,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -42747,7 +42747,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42849,7 +42849,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42948,7 +42948,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43030,7 +43030,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -43124,7 +43124,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -43206,7 +43206,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -43300,7 +43300,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -43389,7 +43389,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -43487,7 +43487,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -43588,7 +43588,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -43694,7 +43694,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -43794,7 +43794,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -43889,7 +43889,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -44001,7 +44001,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -44086,7 +44086,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -44171,7 +44171,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -44268,7 +44268,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -44372,7 +44372,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -44472,7 +44472,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -44658,7 +44658,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44750,7 +44750,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -44851,7 +44851,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44970,7 +44970,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -45068,7 +45068,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -45167,7 +45167,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -45280,7 +45280,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45369,7 +45369,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -45456,7 +45456,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -45551,7 +45551,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45638,7 +45638,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -45739,7 +45739,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -45816,7 +45816,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45919,7 +45919,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -46011,7 +46011,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46106,7 +46106,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -46189,7 +46189,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -46271,7 +46271,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -46367,7 +46367,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -46463,7 +46463,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -46544,7 +46544,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -46633,7 +46633,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46736,7 +46736,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -46831,7 +46831,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -46921,7 +46921,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -47022,7 +47022,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47101,7 +47101,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -47228,7 +47228,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -47322,7 +47322,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47410,7 +47410,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47486,7 +47486,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -47575,7 +47575,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" } ] }, @@ -47653,7 +47653,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47754,7 +47754,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47824,7 +47824,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47912,7 +47912,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47994,7 +47994,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -48071,7 +48071,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48168,7 +48168,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48251,7 +48251,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48336,7 +48336,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48412,7 +48412,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" } ] }, @@ -48489,7 +48489,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48586,7 +48586,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48668,7 +48668,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -48756,7 +48756,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -48845,7 +48845,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48948,7 +48948,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49054,7 +49054,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -49130,7 +49130,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49370,7 +49370,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49462,7 +49462,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49549,7 +49549,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49656,7 +49656,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49744,7 +49744,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49846,7 +49846,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49979,7 +49979,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50109,7 +50109,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50176,7 +50176,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50261,7 +50261,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50340,7 +50340,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50428,7 +50428,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50530,7 +50530,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -50619,7 +50619,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50762,7 +50762,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50853,7 +50853,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50923,7 +50923,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51039,7 +51039,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51158,7 +51158,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51269,7 +51269,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51351,7 +51351,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51446,7 +51446,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" } ] }, @@ -51539,7 +51539,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51655,7 +51655,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -51768,7 +51768,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -51848,7 +51848,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -51932,7 +51932,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -52010,7 +52010,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -52088,7 +52088,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -52170,7 +52170,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -52263,7 +52263,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -52334,7 +52334,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52413,7 +52413,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52510,7 +52510,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" } ] }, @@ -52608,7 +52608,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52717,7 +52717,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52807,7 +52807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -52898,7 +52898,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -52985,7 +52985,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53061,7 +53061,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53137,7 +53137,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -53201,7 +53201,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" } ] }, @@ -53266,7 +53266,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53342,7 +53342,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53406,7 +53406,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53470,7 +53470,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53537,7 +53537,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53604,7 +53604,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" } ] } @@ -53671,7 +53671,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53799,7 +53799,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53892,7 +53892,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53981,7 +53981,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54063,7 +54063,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" } ] }, @@ -54143,7 +54143,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54240,7 +54240,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54310,7 +54310,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54389,7 +54389,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54468,7 +54468,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" } ] }, @@ -54548,7 +54548,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54642,7 +54642,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54727,7 +54727,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54828,7 +54828,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54910,7 +54910,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54992,7 +54992,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55093,7 +55093,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55188,7 +55188,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -55281,7 +55281,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55374,7 +55374,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55456,7 +55456,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55526,7 +55526,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55605,7 +55605,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55686,7 +55686,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55777,7 +55777,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55867,7 +55867,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -55955,7 +55955,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56054,7 +56054,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56139,7 +56139,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56233,7 +56233,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -56328,7 +56328,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56442,7 +56442,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56546,7 +56546,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -56651,7 +56651,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56723,7 +56723,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56807,7 +56807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56889,7 +56889,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56968,7 +56968,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57050,7 +57050,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -57133,7 +57133,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57209,7 +57209,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57287,7 +57287,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57374,7 +57374,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57461,7 +57461,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57587,7 +57587,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57674,7 +57674,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57758,7 +57758,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57893,7 +57893,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58135,7 +58135,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58231,7 +58231,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58351,7 +58351,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58487,7 +58487,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58560,7 +58560,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" } ] }, @@ -58631,7 +58631,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58714,7 +58714,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -58797,7 +58797,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58879,7 +58879,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58955,7 +58955,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59031,7 +59031,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59113,7 +59113,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59204,7 +59204,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59301,7 +59301,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59395,7 +59395,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59486,7 +59486,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59578,7 +59578,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59657,7 +59657,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59740,7 +59740,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59825,7 +59825,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" } ] }, @@ -59908,7 +59908,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59999,7 +59999,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60075,7 +60075,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60155,7 +60155,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60235,7 +60235,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -60312,7 +60312,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60403,7 +60403,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -60496,7 +60496,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60569,7 +60569,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60651,7 +60651,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60724,7 +60724,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60803,7 +60803,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60885,7 +60885,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" } ] }, @@ -60970,7 +60970,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61064,7 +61064,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61173,7 +61173,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -61258,7 +61258,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61349,7 +61349,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61440,7 +61440,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -61523,7 +61523,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61626,7 +61626,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61711,7 +61711,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61803,7 +61803,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61889,7 +61889,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" } ] }, @@ -61990,7 +61990,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62057,7 +62057,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62136,7 +62136,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62200,7 +62200,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" } ] } @@ -62267,7 +62267,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62348,7 +62348,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62427,7 +62427,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62521,7 +62521,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62603,7 +62603,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" } ] } @@ -62699,7 +62699,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -62789,7 +62789,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" } ] }, @@ -62874,7 +62874,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -62950,7 +62950,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" } ] }, @@ -63024,7 +63024,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" } ] }, @@ -63109,7 +63109,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -63189,7 +63189,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63269,7 +63269,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -63352,7 +63352,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" } ] }, @@ -63433,7 +63433,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63528,7 +63528,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -63620,7 +63620,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -63726,7 +63726,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -63826,7 +63826,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -63921,7 +63921,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -63999,7 +63999,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -64090,7 +64090,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64205,7 +64205,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64296,7 +64296,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64369,7 +64369,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64459,7 +64459,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -64544,7 +64544,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -64626,7 +64626,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] }, @@ -64708,7 +64708,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -64790,7 +64790,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" } ] }, @@ -64870,7 +64870,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -64964,7 +64964,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -65122,7 +65122,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -65192,7 +65192,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -65280,7 +65280,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -65361,7 +65361,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-10-01+csv\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -65434,7 +65434,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -65501,7 +65501,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" } ] }, @@ -65580,7 +65580,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -65656,7 +65656,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -65735,7 +65735,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -65811,7 +65811,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -65888,7 +65888,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -65979,7 +65979,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -66064,7 +66064,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66154,7 +66154,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -66239,7 +66239,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -66312,7 +66312,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -66394,7 +66394,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -66480,7 +66480,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -66569,7 +66569,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -66655,7 +66655,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66744,7 +66744,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" } ] }, @@ -66831,7 +66831,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -66932,7 +66932,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -67030,7 +67030,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67134,7 +67134,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67232,7 +67232,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -67314,7 +67314,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -67399,7 +67399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-10-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" } ] } @@ -67495,7 +67495,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -67573,7 +67573,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67650,7 +67650,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -67729,7 +67729,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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 b9068d1172..07168bf2ad 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 @@ -29117,8 +29117,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" /api/atlas/v2/alertConfigs/matchers/fieldNames: @@ -29187,8 +29187,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" /api/atlas/v2/clusters: @@ -29258,8 +29258,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" /api/atlas/v2/eventTypes: @@ -29329,8 +29329,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}: @@ -29398,8 +29398,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: @@ -29472,8 +29472,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: @@ -29554,8 +29554,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" get: @@ -29635,8 +29635,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" patch: @@ -29725,8 +29725,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -29800,8 +29800,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -29881,8 +29881,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -29964,8 +29964,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" get: @@ -30046,8 +30046,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" put: @@ -30137,8 +30137,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30235,8 +30235,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}: @@ -30317,8 +30317,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" x-sunset: "2025-01-01" @@ -30409,8 +30409,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30484,8 +30484,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups: @@ -30557,8 +30557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" post: @@ -30649,8 +30649,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -30722,8 +30722,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" get: @@ -30792,8 +30792,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" patch: @@ -30875,8 +30875,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30960,8 +30960,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31037,8 +31037,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" post: @@ -31126,8 +31126,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31215,8 +31215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" get: @@ -31298,8 +31298,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: @@ -31381,8 +31381,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alertConfigs: @@ -31456,8 +31456,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" post: @@ -31538,8 +31538,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31622,8 +31622,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" get: @@ -31705,8 +31705,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" patch: @@ -31799,8 +31799,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31897,8 +31897,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31986,8 +31986,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alerts: @@ -32072,8 +32072,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" /api/atlas/v2/groups/{groupId}/alerts/{alertId}: @@ -32155,8 +32155,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" patch: @@ -32249,8 +32249,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32338,8 +32338,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/apiKeys: @@ -32413,8 +32413,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" post: @@ -32490,8 +32490,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32575,8 +32575,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" patch: @@ -32666,8 +32666,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32756,8 +32756,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32827,8 +32827,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" patch: @@ -32906,8 +32906,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32977,8 +32977,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" patch: @@ -33054,8 +33054,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33129,8 +33129,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" x-sunset: "2025-05-30" @@ -33214,8 +33214,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33299,8 +33299,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" get: @@ -33379,8 +33379,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-05-30" @@ -33451,8 +33451,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" put: @@ -33539,8 +33539,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33610,8 +33610,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" post: @@ -33690,8 +33690,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33778,8 +33778,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: @@ -33856,8 +33856,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" patch: @@ -33949,8 +33949,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34030,8 +34030,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" x-sunset: "2026-03-01" @@ -34117,8 +34117,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34207,8 +34207,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" get: @@ -34289,8 +34289,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" x-sunset: "2026-03-01" @@ -34383,8 +34383,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34467,8 +34467,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -34558,8 +34558,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34643,8 +34643,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -34724,8 +34724,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -34819,8 +34819,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34910,8 +34910,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -34996,8 +34996,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: @@ -35076,8 +35076,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" x-sunset: "2025-08-05" @@ -35155,8 +35155,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-08-05" @@ -35248,8 +35248,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35334,8 +35334,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -35425,8 +35425,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35516,8 +35516,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -35604,8 +35604,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -35701,8 +35701,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35790,8 +35790,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -35878,8 +35878,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: @@ -35958,8 +35958,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: @@ -36053,8 +36053,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36148,8 +36148,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36230,8 +36230,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: @@ -36319,8 +36319,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: @@ -36399,8 +36399,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: @@ -36488,8 +36488,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: @@ -36570,8 +36570,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: @@ -36662,8 +36662,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/fts/indexes: @@ -36757,8 +36757,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36856,8 +36856,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -36950,8 +36950,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" x-sunset: "2025-06-01" @@ -37041,8 +37041,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -37145,8 +37145,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -37230,8 +37230,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -37313,8 +37313,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" x-sunset: "2026-03-01" @@ -37406,8 +37406,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37503,8 +37503,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" x-sunset: "2026-03-01" @@ -37598,8 +37598,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37756,8 +37756,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37842,8 +37842,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -37937,8 +37937,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38031,8 +38031,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" get: @@ -38124,8 +38124,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -38228,8 +38228,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -38339,8 +38339,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" @@ -38425,8 +38425,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" get: @@ -38509,8 +38509,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -38600,8 +38600,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38686,8 +38686,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -38782,8 +38782,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38863,8 +38863,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38960,8 +38960,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -39049,8 +39049,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39144,8 +39144,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: @@ -39225,8 +39225,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" x-sunset: "2026-03-01" @@ -39306,8 +39306,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -39398,8 +39398,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39492,8 +39492,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39577,8 +39577,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -39667,8 +39667,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39761,8 +39761,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: @@ -39851,8 +39851,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" get: @@ -39938,8 +39938,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -40034,8 +40034,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40114,8 +40114,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: @@ -40228,8 +40228,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" @@ -40313,8 +40313,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: @@ -40399,8 +40399,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40487,8 +40487,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40574,8 +40574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" post: @@ -40659,8 +40659,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40746,8 +40746,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" get: @@ -40824,8 +40824,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" patch: @@ -40919,8 +40919,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40993,8 +40993,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" /api/atlas/v2/groups/{groupId}/customDBRoles/roles: @@ -41064,8 +41064,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" post: @@ -41149,8 +41149,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41230,8 +41230,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" get: @@ -41306,8 +41306,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41397,8 +41397,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41479,8 +41479,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" post: @@ -41562,8 +41562,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41639,8 +41639,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" get: @@ -41716,8 +41716,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" patch: @@ -41807,8 +41807,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41888,8 +41888,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: @@ -41981,8 +41981,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" get: @@ -42074,8 +42074,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42179,8 +42179,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42281,8 +42281,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" @@ -42354,8 +42354,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" post: @@ -42530,8 +42530,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42631,8 +42631,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" get: @@ -42727,8 +42727,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42838,8 +42838,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42920,8 +42920,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -43020,8 +43020,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43137,8 +43137,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: @@ -43249,8 +43249,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/encryptionAtRest: @@ -43321,8 +43321,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" patch: @@ -43416,8 +43416,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43495,8 +43495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -43580,8 +43580,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43675,8 +43675,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" get: @@ -43760,8 +43760,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/events: @@ -43886,8 +43886,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" /api/atlas/v2/groups/{groupId}/events/{eventId}: @@ -43975,8 +43975,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: @@ -44046,8 +44046,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: @@ -44147,8 +44147,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: @@ -44247,8 +44247,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: @@ -44346,8 +44346,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/integrations: @@ -44422,8 +44422,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: @@ -44513,8 +44513,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" get: @@ -44603,8 +44603,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" post: @@ -44707,8 +44707,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44811,8 +44811,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44891,8 +44891,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" x-sunset: "2024-10-04" @@ -44974,8 +44974,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45055,8 +45055,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45136,8 +45136,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" x-sunset: "2024-10-04" @@ -45217,8 +45217,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" x-sunset: "2024-10-04" @@ -45308,8 +45308,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45382,8 +45382,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" /api/atlas/v2/groups/{groupId}/limits: @@ -45459,8 +45459,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" /api/atlas/v2/groups/{groupId}/limits/{limitName}: @@ -45568,8 +45568,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" get: @@ -45678,8 +45678,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" patch: @@ -45800,8 +45800,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45896,8 +45896,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45973,8 +45973,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: @@ -46049,8 +46049,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46138,8 +46138,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46225,8 +46225,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/maintenanceWindow: @@ -46293,8 +46293,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" get: @@ -46361,8 +46361,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: @@ -46439,8 +46439,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46511,8 +46511,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46583,8 +46583,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46654,8 +46654,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: @@ -46723,8 +46723,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: @@ -46794,8 +46794,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46906,8 +46906,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" /api/atlas/v2/groups/{groupId}/peers: @@ -46990,8 +46990,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" post: @@ -47076,8 +47076,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47158,8 +47158,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" get: @@ -47237,8 +47237,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" patch: @@ -47329,8 +47329,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -47403,8 +47403,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: @@ -47483,8 +47483,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47564,8 +47564,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" get: @@ -47643,8 +47643,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" patch: @@ -47734,8 +47734,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -47818,8 +47818,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: @@ -47908,8 +47908,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: @@ -47990,8 +47990,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48074,8 +48074,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48166,8 +48166,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: @@ -48256,8 +48256,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" get: @@ -48345,8 +48345,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: @@ -48434,8 +48434,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48518,8 +48518,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: @@ -48607,8 +48607,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" get: @@ -48697,8 +48697,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: @@ -48801,8 +48801,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48899,8 +48899,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -48996,8 +48996,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: @@ -49077,8 +49077,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49150,8 +49150,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" patch: @@ -49229,8 +49229,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49311,8 +49311,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -49403,8 +49403,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49492,8 +49492,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -49578,8 +49578,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -49673,8 +49673,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -49748,8 +49748,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" patch: @@ -49831,8 +49831,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49909,8 +49909,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" post: @@ -50007,8 +50007,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50089,8 +50089,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" get: @@ -50170,8 +50170,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes: @@ -50242,8 +50242,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}: @@ -50319,8 +50319,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: @@ -50399,8 +50399,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: @@ -50482,8 +50482,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: @@ -50591,8 +50591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: @@ -50671,8 +50671,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: @@ -50753,8 +50753,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: @@ -50878,8 +50878,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: @@ -51114,8 +51114,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: @@ -51211,8 +51211,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: @@ -51325,8 +51325,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: @@ -51446,8 +51446,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pushBasedLogExport: @@ -51519,8 +51519,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" get: @@ -51591,8 +51591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" patch: @@ -51673,8 +51673,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51757,8 +51757,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51842,8 +51842,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -51921,8 +51921,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" /api/atlas/v2/groups/{groupId}/serverless: @@ -51993,8 +51993,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" post: @@ -52074,8 +52074,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52159,8 +52159,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -52251,8 +52251,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52342,8 +52342,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: @@ -52425,8 +52425,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: @@ -52514,8 +52514,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: @@ -52592,8 +52592,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -52676,8 +52676,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52760,8 +52760,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" get: @@ -52841,8 +52841,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" patch: @@ -52929,8 +52929,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53004,8 +53004,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" post: @@ -53084,8 +53084,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53164,8 +53164,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" get: @@ -53240,8 +53240,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -53327,8 +53327,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53418,8 +53418,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53493,8 +53493,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: @@ -53574,8 +53574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53647,8 +53647,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" post: @@ -53726,8 +53726,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53807,8 +53807,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" get: @@ -53889,8 +53889,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" patch: @@ -53978,8 +53978,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -54081,8 +54081,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" @@ -54161,8 +54161,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -54248,8 +54248,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54335,8 +54335,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" get: @@ -54416,8 +54416,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -54511,8 +54511,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -54591,8 +54591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" post: @@ -54679,8 +54679,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54765,8 +54765,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" patch: @@ -54860,8 +54860,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -54931,8 +54931,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" patch: @@ -55013,8 +55013,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55086,8 +55086,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: @@ -55155,8 +55155,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: @@ -55235,8 +55235,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55315,8 +55315,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/users: @@ -55399,8 +55399,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" /api/atlas/v2/groups/{groupId}/users/{userId}: @@ -55479,8 +55479,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" /api/atlas/v2/groups/{groupId}/users/{userId}/roles: @@ -55570,8 +55570,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55654,8 +55654,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" /api/atlas/v2/orgs: @@ -55736,8 +55736,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" post: @@ -55820,8 +55820,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -55903,8 +55903,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" get: @@ -55977,8 +55977,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" patch: @@ -56060,8 +56060,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56137,8 +56137,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" post: @@ -56217,8 +56217,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56300,8 +56300,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" get: @@ -56380,8 +56380,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" patch: @@ -56471,8 +56471,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56557,8 +56557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -56652,8 +56652,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56747,8 +56747,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" get: @@ -56837,8 +56837,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: @@ -56916,8 +56916,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57005,8 +57005,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/events: @@ -57109,8 +57109,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" /api/atlas/v2/orgs/{orgId}/events/{eventId}: @@ -57198,8 +57198,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" /api/atlas/v2/orgs/{orgId}/federationSettings: @@ -57271,8 +57271,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" /api/atlas/v2/orgs/{orgId}/groups: @@ -57360,8 +57360,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" /api/atlas/v2/orgs/{orgId}/invites: @@ -57441,8 +57441,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" patch: @@ -57522,8 +57522,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57605,8 +57605,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57686,8 +57686,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" get: @@ -57766,8 +57766,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" patch: @@ -57856,8 +57856,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57991,8 +57991,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: @@ -58077,8 +58077,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: @@ -58164,8 +58164,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/pending: @@ -58235,8 +58235,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: @@ -58308,8 +58308,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: @@ -58378,8 +58378,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" post: @@ -58457,8 +58457,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58532,8 +58532,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" post: @@ -58611,8 +58611,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58688,8 +58688,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" get: @@ -58764,8 +58764,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -58851,8 +58851,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -58932,8 +58932,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: @@ -59018,8 +59018,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59101,8 +59101,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" /api/atlas/v2/orgs/{orgId}/settings: @@ -59174,8 +59174,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" patch: @@ -59255,8 +59255,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59336,8 +59336,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" post: @@ -59422,8 +59422,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59509,8 +59509,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" get: @@ -59593,8 +59593,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" patch: @@ -59688,8 +59688,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -59779,8 +59779,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -59876,8 +59876,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59970,8 +59970,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: @@ -60052,8 +60052,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/users: @@ -60128,8 +60128,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" /api/atlas/v2/orgs/{orgId}/users/{userId}: @@ -60211,8 +60211,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: @@ -60302,8 +60302,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60388,8 +60388,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -60469,8 +60469,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" /api/atlas/v2/users/byName/{userName}: @@ -60546,8 +60546,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-10-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" servers: 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 491c557ecb..133d0c1b53 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 @@ -36120,7 +36120,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" } ] } @@ -36187,7 +36187,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36260,7 +36260,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" } ] } @@ -36333,7 +36333,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" } ] } @@ -36397,7 +36397,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" } ] } @@ -36473,7 +36473,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36556,7 +36556,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" } ] }, @@ -36637,7 +36637,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -36729,7 +36729,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -36802,7 +36802,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -36884,7 +36884,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -36967,7 +36967,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -37051,7 +37051,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37146,7 +37146,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -37254,7 +37254,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37336,7 +37336,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -37413,7 +37413,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" } ] }, @@ -37494,7 +37494,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37583,7 +37583,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -37660,7 +37660,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -37730,7 +37730,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -37806,7 +37806,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" } ] }, @@ -37902,7 +37902,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 --include \\\n --header \"Accept: 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 '{ }'" } ] } @@ -37986,7 +37986,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\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\"" } ] } @@ -38056,7 +38056,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -38124,7 +38124,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" } ] }, @@ -38209,7 +38209,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38295,7 +38295,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38375,7 +38375,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38473,7 +38473,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38558,7 +38558,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" } ] }, @@ -38644,7 +38644,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -38731,7 +38731,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -38807,7 +38807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38886,7 +38886,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38966,7 +38966,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" } ] }, @@ -39047,7 +39047,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39139,7 +39139,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -39234,7 +39234,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -39326,7 +39326,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39418,7 +39418,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39500,7 +39500,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39595,7 +39595,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -39687,7 +39687,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39767,7 +39767,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39843,7 +39843,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39929,7 +39929,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" } ] }, @@ -40029,7 +40029,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -40120,7 +40120,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40187,7 +40187,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40266,7 +40266,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40333,7 +40333,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40409,7 +40409,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40486,7 +40486,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -40572,7 +40572,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -40656,7 +40656,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -40735,7 +40735,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -40806,7 +40806,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40898,7 +40898,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -40965,7 +40965,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41045,7 +41045,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41136,7 +41136,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] } @@ -41215,7 +41215,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41313,7 +41313,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41399,7 +41399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -41489,7 +41489,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -41585,7 +41585,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -41675,7 +41675,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41765,7 +41765,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41858,7 +41858,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" } ] }, @@ -41942,7 +41942,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -42041,7 +42041,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -42130,7 +42130,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -42224,7 +42224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42309,7 +42309,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -42397,7 +42397,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -42494,7 +42494,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42588,7 +42588,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -42677,7 +42677,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -42757,7 +42757,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -42836,7 +42836,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -42929,7 +42929,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -43021,7 +43021,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43112,7 +43112,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43203,7 +43203,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -43295,7 +43295,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43377,7 +43377,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43471,7 +43471,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -43563,7 +43563,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43666,7 +43666,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43768,7 +43768,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43867,7 +43867,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43949,7 +43949,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44043,7 +44043,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44125,7 +44125,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44219,7 +44219,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44308,7 +44308,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44406,7 +44406,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44488,7 +44488,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -44590,7 +44590,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -44692,7 +44692,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -44785,7 +44785,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44886,7 +44886,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -44992,7 +44992,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -45092,7 +45092,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -45187,7 +45187,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -45299,7 +45299,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -45384,7 +45384,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -45469,7 +45469,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -45566,7 +45566,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -45670,7 +45670,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -45770,7 +45770,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -45956,7 +45956,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46048,7 +46048,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -46149,7 +46149,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46268,7 +46268,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -46366,7 +46366,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -46465,7 +46465,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -46578,7 +46578,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46667,7 +46667,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46754,7 +46754,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -46849,7 +46849,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46936,7 +46936,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -47037,7 +47037,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -47114,7 +47114,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47217,7 +47217,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47309,7 +47309,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47404,7 +47404,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -47487,7 +47487,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -47569,7 +47569,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -47665,7 +47665,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -47761,7 +47761,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -47842,7 +47842,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47931,7 +47931,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48034,7 +48034,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48129,7 +48129,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -48219,7 +48219,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48320,7 +48320,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48399,7 +48399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48498,7 +48498,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48650,7 +48650,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48777,7 +48777,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -48847,7 +48847,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -48941,7 +48941,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49029,7 +49029,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49105,7 +49105,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -49194,7 +49194,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" } ] }, @@ -49272,7 +49272,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49373,7 +49373,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49443,7 +49443,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49531,7 +49531,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49613,7 +49613,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49690,7 +49690,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49787,7 +49787,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49870,7 +49870,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -49955,7 +49955,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50031,7 +50031,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" } ] }, @@ -50108,7 +50108,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50205,7 +50205,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50287,7 +50287,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50375,7 +50375,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -50464,7 +50464,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50567,7 +50567,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50673,7 +50673,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -50749,7 +50749,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50989,7 +50989,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51081,7 +51081,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -51168,7 +51168,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51275,7 +51275,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51363,7 +51363,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51465,7 +51465,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51598,7 +51598,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51728,7 +51728,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51795,7 +51795,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51880,7 +51880,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51959,7 +51959,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52047,7 +52047,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52149,7 +52149,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -52238,7 +52238,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52381,7 +52381,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52472,7 +52472,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52542,7 +52542,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52658,7 +52658,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52777,7 +52777,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52888,7 +52888,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52970,7 +52970,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53065,7 +53065,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" } ] }, @@ -53158,7 +53158,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53274,7 +53274,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -53387,7 +53387,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -53467,7 +53467,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -53551,7 +53551,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -53629,7 +53629,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -53707,7 +53707,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -53789,7 +53789,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -53882,7 +53882,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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" @@ -53953,7 +53953,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54032,7 +54032,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54129,7 +54129,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" } ] }, @@ -54227,7 +54227,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54336,7 +54336,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54426,7 +54426,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -54517,7 +54517,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -54604,7 +54604,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54680,7 +54680,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54756,7 +54756,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -54820,7 +54820,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" } ] }, @@ -54885,7 +54885,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54961,7 +54961,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55025,7 +55025,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55089,7 +55089,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55156,7 +55156,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55223,7 +55223,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" } ] } @@ -55290,7 +55290,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55418,7 +55418,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55511,7 +55511,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55600,7 +55600,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55682,7 +55682,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" } ] }, @@ -55762,7 +55762,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55859,7 +55859,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -55929,7 +55929,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56008,7 +56008,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56087,7 +56087,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" } ] }, @@ -56167,7 +56167,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56261,7 +56261,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56346,7 +56346,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56447,7 +56447,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56529,7 +56529,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56611,7 +56611,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56712,7 +56712,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56807,7 +56807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -56900,7 +56900,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56993,7 +56993,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57075,7 +57075,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57145,7 +57145,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57224,7 +57224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57305,7 +57305,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57396,7 +57396,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57486,7 +57486,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -57574,7 +57574,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57673,7 +57673,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57758,7 +57758,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57852,7 +57852,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -57947,7 +57947,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58061,7 +58061,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58165,7 +58165,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -58270,7 +58270,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58342,7 +58342,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58426,7 +58426,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58508,7 +58508,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58587,7 +58587,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58669,7 +58669,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -58752,7 +58752,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58828,7 +58828,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58906,7 +58906,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58982,7 +58982,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59069,7 +59069,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59156,7 +59156,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59282,7 +59282,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59369,7 +59369,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59453,7 +59453,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59588,7 +59588,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59830,7 +59830,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59926,7 +59926,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60046,7 +60046,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60182,7 +60182,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60309,7 +60309,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60382,7 +60382,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" } ] }, @@ -60453,7 +60453,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60536,7 +60536,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -60619,7 +60619,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60701,7 +60701,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60777,7 +60777,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60853,7 +60853,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60935,7 +60935,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61026,7 +61026,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61123,7 +61123,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61217,7 +61217,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61308,7 +61308,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61400,7 +61400,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61479,7 +61479,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61562,7 +61562,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61647,7 +61647,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" } ] }, @@ -61730,7 +61730,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61821,7 +61821,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61897,7 +61897,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61977,7 +61977,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62057,7 +62057,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -62134,7 +62134,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62225,7 +62225,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -62318,7 +62318,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62391,7 +62391,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62473,7 +62473,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62546,7 +62546,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62625,7 +62625,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62707,7 +62707,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" } ] }, @@ -62792,7 +62792,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62886,7 +62886,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62995,7 +62995,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -63080,7 +63080,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63171,7 +63171,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63262,7 +63262,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -63345,7 +63345,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63448,7 +63448,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63533,7 +63533,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63625,7 +63625,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63711,7 +63711,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" } ] }, @@ -63812,7 +63812,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63879,7 +63879,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63958,7 +63958,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64022,7 +64022,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" } ] } @@ -64089,7 +64089,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -64170,7 +64170,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64249,7 +64249,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -64343,7 +64343,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -64425,7 +64425,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" } ] } @@ -64521,7 +64521,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -64611,7 +64611,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" } ] }, @@ -64696,7 +64696,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -64772,7 +64772,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" } ] }, @@ -64846,7 +64846,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" } ] }, @@ -64931,7 +64931,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -65011,7 +65011,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -65091,7 +65091,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -65174,7 +65174,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" } ] }, @@ -65255,7 +65255,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -65350,7 +65350,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -65442,7 +65442,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -65548,7 +65548,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -65648,7 +65648,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -65743,7 +65743,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -65821,7 +65821,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -65912,7 +65912,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66027,7 +66027,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66118,7 +66118,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66191,7 +66191,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66281,7 +66281,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -66366,7 +66366,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -66448,7 +66448,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] }, @@ -66530,7 +66530,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -66612,7 +66612,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" } ] }, @@ -66692,7 +66692,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -66786,7 +66786,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -66944,7 +66944,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -67014,7 +67014,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -67102,7 +67102,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -67183,7 +67183,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2023-11-15+csv\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -67256,7 +67256,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -67323,7 +67323,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" } ] }, @@ -67402,7 +67402,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67478,7 +67478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67557,7 +67557,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67633,7 +67633,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -67710,7 +67710,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67801,7 +67801,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -67886,7 +67886,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -67976,7 +67976,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68061,7 +68061,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -68134,7 +68134,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68216,7 +68216,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -68302,7 +68302,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68391,7 +68391,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68477,7 +68477,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68566,7 +68566,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" } ] }, @@ -68653,7 +68653,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68754,7 +68754,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\n --header \"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 '{ }'" } ] } @@ -68852,7 +68852,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68956,7 +68956,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69054,7 +69054,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -69136,7 +69136,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69221,7 +69221,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" } ] } @@ -69317,7 +69317,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -69370,7 +69370,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2023-11-15+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" } ] } @@ -69448,7 +69448,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69525,7 +69525,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69604,7 +69604,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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 4284a2c3cd..afbbd9b905 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 @@ -29638,8 +29638,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" /api/atlas/v2/alertConfigs/matchers/fieldNames: @@ -29708,8 +29708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" /api/atlas/v2/clusters: @@ -29779,8 +29779,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" /api/atlas/v2/eventTypes: @@ -29850,8 +29850,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}: @@ -29919,8 +29919,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: @@ -29993,8 +29993,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: @@ -30075,8 +30075,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" get: @@ -30156,8 +30156,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" patch: @@ -30246,8 +30246,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30321,8 +30321,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -30402,8 +30402,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -30485,8 +30485,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" get: @@ -30567,8 +30567,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" put: @@ -30658,8 +30658,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30756,8 +30756,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" post: @@ -30841,8 +30841,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -30920,8 +30920,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" get: @@ -31000,8 +31000,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" patch: @@ -31090,8 +31090,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31169,8 +31169,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: @@ -31241,8 +31241,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups: @@ -31314,8 +31314,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" post: @@ -31406,8 +31406,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -31479,8 +31479,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" get: @@ -31549,8 +31549,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" patch: @@ -31632,8 +31632,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31717,8 +31717,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31794,8 +31794,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" post: @@ -31883,8 +31883,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31972,8 +31972,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" get: @@ -32055,8 +32055,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: @@ -32138,8 +32138,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alertConfigs: @@ -32213,8 +32213,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" post: @@ -32295,8 +32295,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32379,8 +32379,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" get: @@ -32462,8 +32462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" patch: @@ -32556,8 +32556,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32654,8 +32654,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32743,8 +32743,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alerts: @@ -32829,8 +32829,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" /api/atlas/v2/groups/{groupId}/alerts/{alertId}: @@ -32912,8 +32912,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" patch: @@ -33006,8 +33006,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33095,8 +33095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/apiKeys: @@ -33170,8 +33170,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" post: @@ -33247,8 +33247,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33332,8 +33332,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" patch: @@ -33423,8 +33423,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33513,8 +33513,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33584,8 +33584,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" patch: @@ -33663,8 +33663,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33734,8 +33734,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" patch: @@ -33811,8 +33811,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33886,8 +33886,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" x-sunset: "2025-05-30" @@ -33971,8 +33971,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34056,8 +34056,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" get: @@ -34136,8 +34136,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-05-30" @@ -34208,8 +34208,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" put: @@ -34296,8 +34296,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34367,8 +34367,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" post: @@ -34447,8 +34447,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34535,8 +34535,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: @@ -34613,8 +34613,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" patch: @@ -34706,8 +34706,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34787,8 +34787,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" x-sunset: "2026-03-01" @@ -34874,8 +34874,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34964,8 +34964,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" get: @@ -35046,8 +35046,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" x-sunset: "2026-03-01" @@ -35140,8 +35140,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35275,8 +35275,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: @@ -35365,8 +35365,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: @@ -35446,8 +35446,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -35537,8 +35537,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35622,8 +35622,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: @@ -35703,8 +35703,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -35798,8 +35798,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35889,8 +35889,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -35975,8 +35975,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: @@ -36055,8 +36055,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" x-sunset: "2025-08-05" @@ -36134,8 +36134,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-08-05" @@ -36227,8 +36227,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36313,8 +36313,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -36404,8 +36404,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36495,8 +36495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -36583,8 +36583,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -36680,8 +36680,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -36769,8 +36769,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -36857,8 +36857,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: @@ -36937,8 +36937,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: @@ -37032,8 +37032,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37127,8 +37127,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37209,8 +37209,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: @@ -37298,8 +37298,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: @@ -37378,8 +37378,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: @@ -37467,8 +37467,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: @@ -37549,8 +37549,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: @@ -37641,8 +37641,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: @@ -37722,8 +37722,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -37818,8 +37818,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37916,8 +37916,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38008,8 +38008,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38105,8 +38105,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38204,8 +38204,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -38298,8 +38298,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" x-sunset: "2025-06-01" @@ -38389,8 +38389,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -38493,8 +38493,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -38578,8 +38578,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -38661,8 +38661,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" x-sunset: "2026-03-01" @@ -38754,8 +38754,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38851,8 +38851,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" x-sunset: "2026-03-01" @@ -38946,8 +38946,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39104,8 +39104,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39190,8 +39190,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -39285,8 +39285,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39379,8 +39379,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" get: @@ -39472,8 +39472,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -39576,8 +39576,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -39687,8 +39687,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" @@ -39773,8 +39773,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" get: @@ -39857,8 +39857,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -39948,8 +39948,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40034,8 +40034,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -40130,8 +40130,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40211,8 +40211,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40308,8 +40308,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -40397,8 +40397,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40492,8 +40492,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: @@ -40573,8 +40573,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" x-sunset: "2026-03-01" @@ -40654,8 +40654,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -40746,8 +40746,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40840,8 +40840,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40925,8 +40925,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41015,8 +41015,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41109,8 +41109,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: @@ -41199,8 +41199,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" get: @@ -41286,8 +41286,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41382,8 +41382,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41462,8 +41462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz: @@ -41576,8 +41576,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" @@ -41661,8 +41661,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: @@ -41747,8 +41747,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41835,8 +41835,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41909,8 +41909,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" /api/atlas/v2/groups/{groupId}/containers: @@ -41994,8 +41994,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" post: @@ -42079,8 +42079,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42166,8 +42166,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" get: @@ -42244,8 +42244,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" patch: @@ -42339,8 +42339,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42413,8 +42413,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" /api/atlas/v2/groups/{groupId}/customDBRoles/roles: @@ -42484,8 +42484,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" post: @@ -42569,8 +42569,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42650,8 +42650,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" get: @@ -42726,8 +42726,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42817,8 +42817,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42899,8 +42899,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" post: @@ -42982,8 +42982,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43059,8 +43059,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" get: @@ -43136,8 +43136,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" patch: @@ -43227,8 +43227,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -43308,8 +43308,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: @@ -43401,8 +43401,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" get: @@ -43494,8 +43494,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -43599,8 +43599,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -43701,8 +43701,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" @@ -43774,8 +43774,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" post: @@ -43950,8 +43950,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44051,8 +44051,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" get: @@ -44147,8 +44147,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -44258,8 +44258,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44340,8 +44340,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -44440,8 +44440,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44557,8 +44557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: @@ -44669,8 +44669,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/encryptionAtRest: @@ -44741,8 +44741,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" patch: @@ -44836,8 +44836,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44915,8 +44915,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -45000,8 +45000,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45095,8 +45095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" get: @@ -45180,8 +45180,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/events: @@ -45306,8 +45306,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" /api/atlas/v2/groups/{groupId}/events/{eventId}: @@ -45395,8 +45395,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: @@ -45466,8 +45466,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: @@ -45567,8 +45567,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: @@ -45667,8 +45667,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: @@ -45766,8 +45766,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/integrations: @@ -45842,8 +45842,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: @@ -45933,8 +45933,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" get: @@ -46023,8 +46023,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" post: @@ -46127,8 +46127,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46231,8 +46231,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46311,8 +46311,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" x-sunset: "2024-10-04" @@ -46394,8 +46394,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46475,8 +46475,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46556,8 +46556,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" x-sunset: "2024-10-04" @@ -46637,8 +46637,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" x-sunset: "2024-10-04" @@ -46728,8 +46728,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46802,8 +46802,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" /api/atlas/v2/groups/{groupId}/limits: @@ -46879,8 +46879,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" /api/atlas/v2/groups/{groupId}/limits/{limitName}: @@ -46988,8 +46988,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" get: @@ -47098,8 +47098,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" patch: @@ -47220,8 +47220,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -47316,8 +47316,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47393,8 +47393,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: @@ -47469,8 +47469,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47558,8 +47558,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47645,8 +47645,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/maintenanceWindow: @@ -47713,8 +47713,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" get: @@ -47781,8 +47781,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: @@ -47859,8 +47859,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47931,8 +47931,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48003,8 +48003,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48074,8 +48074,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: @@ -48143,8 +48143,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: @@ -48214,8 +48214,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48326,8 +48326,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" /api/atlas/v2/groups/{groupId}/peers: @@ -48410,8 +48410,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" post: @@ -48496,8 +48496,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48578,8 +48578,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" get: @@ -48657,8 +48657,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" patch: @@ -48749,8 +48749,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48823,8 +48823,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: @@ -48903,8 +48903,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48984,8 +48984,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" get: @@ -49063,8 +49063,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" patch: @@ -49154,8 +49154,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -49238,8 +49238,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: @@ -49328,8 +49328,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: @@ -49410,8 +49410,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49494,8 +49494,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49586,8 +49586,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: @@ -49676,8 +49676,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" get: @@ -49765,8 +49765,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: @@ -49854,8 +49854,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49938,8 +49938,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: @@ -50027,8 +50027,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" get: @@ -50117,8 +50117,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: @@ -50221,8 +50221,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50319,8 +50319,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -50416,8 +50416,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: @@ -50497,8 +50497,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50570,8 +50570,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" patch: @@ -50649,8 +50649,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50731,8 +50731,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -50823,8 +50823,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50912,8 +50912,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -50998,8 +50998,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -51093,8 +51093,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -51168,8 +51168,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" patch: @@ -51251,8 +51251,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51329,8 +51329,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -51427,8 +51427,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51509,8 +51509,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" get: @@ -51590,8 +51590,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes: @@ -51662,8 +51662,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}: @@ -51739,8 +51739,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: @@ -51851,8 +51851,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: @@ -51923,8 +51923,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: @@ -52003,8 +52003,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: @@ -52086,8 +52086,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: @@ -52195,8 +52195,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: @@ -52275,8 +52275,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: @@ -52357,8 +52357,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: @@ -52482,8 +52482,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: @@ -52718,8 +52718,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: @@ -52815,8 +52815,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: @@ -52929,8 +52929,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: @@ -53050,8 +53050,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pushBasedLogExport: @@ -53123,8 +53123,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" get: @@ -53195,8 +53195,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" patch: @@ -53277,8 +53277,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53361,8 +53361,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53446,8 +53446,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53525,8 +53525,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" /api/atlas/v2/groups/{groupId}/serverless: @@ -53597,8 +53597,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" post: @@ -53678,8 +53678,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53763,8 +53763,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -53855,8 +53855,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53946,8 +53946,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: @@ -54029,8 +54029,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: @@ -54118,8 +54118,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: @@ -54196,8 +54196,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -54280,8 +54280,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54364,8 +54364,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" get: @@ -54445,8 +54445,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" patch: @@ -54533,8 +54533,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -54608,8 +54608,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" post: @@ -54688,8 +54688,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54768,8 +54768,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" get: @@ -54844,8 +54844,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -54931,8 +54931,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55022,8 +55022,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55097,8 +55097,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: @@ -55178,8 +55178,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55251,8 +55251,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" post: @@ -55330,8 +55330,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55411,8 +55411,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" get: @@ -55493,8 +55493,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" patch: @@ -55582,8 +55582,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55685,8 +55685,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" @@ -55765,8 +55765,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -55852,8 +55852,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55939,8 +55939,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" get: @@ -56020,8 +56020,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -56115,8 +56115,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56195,8 +56195,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" post: @@ -56283,8 +56283,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56369,8 +56369,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" patch: @@ -56464,8 +56464,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56535,8 +56535,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" patch: @@ -56617,8 +56617,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56690,8 +56690,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: @@ -56759,8 +56759,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: @@ -56839,8 +56839,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56919,8 +56919,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/users: @@ -57003,8 +57003,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" /api/atlas/v2/groups/{groupId}/users/{userId}: @@ -57083,8 +57083,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" /api/atlas/v2/groups/{groupId}/users/{userId}/roles: @@ -57174,8 +57174,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57258,8 +57258,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" /api/atlas/v2/orgs: @@ -57340,8 +57340,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" post: @@ -57424,8 +57424,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -57507,8 +57507,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" get: @@ -57581,8 +57581,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" patch: @@ -57664,8 +57664,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57741,8 +57741,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" post: @@ -57821,8 +57821,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57904,8 +57904,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" get: @@ -57984,8 +57984,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" patch: @@ -58075,8 +58075,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -58161,8 +58161,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -58256,8 +58256,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58351,8 +58351,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" get: @@ -58441,8 +58441,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: @@ -58520,8 +58520,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58609,8 +58609,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/events: @@ -58713,8 +58713,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" /api/atlas/v2/orgs/{orgId}/events/{eventId}: @@ -58802,8 +58802,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" /api/atlas/v2/orgs/{orgId}/federationSettings: @@ -58875,8 +58875,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" /api/atlas/v2/orgs/{orgId}/groups: @@ -58964,8 +58964,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" /api/atlas/v2/orgs/{orgId}/invites: @@ -59045,8 +59045,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" patch: @@ -59126,8 +59126,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59209,8 +59209,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59290,8 +59290,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" get: @@ -59370,8 +59370,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" patch: @@ -59460,8 +59460,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -59595,8 +59595,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: @@ -59681,8 +59681,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: @@ -59768,8 +59768,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/pending: @@ -59839,8 +59839,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: @@ -59912,8 +59912,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: @@ -59982,8 +59982,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" post: @@ -60061,8 +60061,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60136,8 +60136,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" post: @@ -60215,8 +60215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60292,8 +60292,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" get: @@ -60368,8 +60368,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -60455,8 +60455,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -60536,8 +60536,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: @@ -60622,8 +60622,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60705,8 +60705,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" /api/atlas/v2/orgs/{orgId}/settings: @@ -60778,8 +60778,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" patch: @@ -60859,8 +60859,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60940,8 +60940,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" post: @@ -61026,8 +61026,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61113,8 +61113,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" get: @@ -61197,8 +61197,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" patch: @@ -61292,8 +61292,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -61383,8 +61383,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -61480,8 +61480,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61574,8 +61574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: @@ -61656,8 +61656,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/users: @@ -61732,8 +61732,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" /api/atlas/v2/orgs/{orgId}/users/{userId}: @@ -61815,8 +61815,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: @@ -61906,8 +61906,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61971,8 +61971,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" /api/atlas/v2/users: @@ -62055,8 +62055,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -62136,8 +62136,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" /api/atlas/v2/users/byName/{userName}: @@ -62213,8 +62213,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2023-11-15+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" servers: 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 4524ef7771..32f4d54c75 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 @@ -36475,7 +36475,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" } ] } @@ -36542,7 +36542,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36615,7 +36615,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" } ] } @@ -36688,7 +36688,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" } ] } @@ -36752,7 +36752,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" } ] } @@ -36828,7 +36828,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36911,7 +36911,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" } ] }, @@ -36992,7 +36992,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37084,7 +37084,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -37157,7 +37157,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37239,7 +37239,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -37322,7 +37322,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -37406,7 +37406,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37501,7 +37501,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -37609,7 +37609,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37691,7 +37691,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -37768,7 +37768,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" } ] }, @@ -37849,7 +37849,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37938,7 +37938,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -38015,7 +38015,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -38085,7 +38085,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -38161,7 +38161,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" } ] }, @@ -38257,7 +38257,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 --include \\\n --header \"Accept: 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 '{ }'" } ] } @@ -38341,7 +38341,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\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\"" } ] } @@ -38411,7 +38411,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -38479,7 +38479,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" } ] }, @@ -38564,7 +38564,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38650,7 +38650,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38730,7 +38730,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -38828,7 +38828,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38913,7 +38913,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" } ] }, @@ -38999,7 +38999,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39086,7 +39086,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39162,7 +39162,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39241,7 +39241,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39321,7 +39321,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" } ] }, @@ -39402,7 +39402,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39494,7 +39494,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -39589,7 +39589,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -39681,7 +39681,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39773,7 +39773,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39855,7 +39855,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39949,7 +39949,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40040,7 +40040,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40120,7 +40120,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40196,7 +40196,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40282,7 +40282,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" } ] }, @@ -40382,7 +40382,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -40473,7 +40473,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40540,7 +40540,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40619,7 +40619,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40686,7 +40686,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40762,7 +40762,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40838,7 +40838,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40975,7 +40975,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41058,7 +41058,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -41170,7 +41170,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -41240,7 +41240,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41332,7 +41332,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -41399,7 +41399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41479,7 +41479,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41570,7 +41570,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] } @@ -41649,7 +41649,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41747,7 +41747,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41833,7 +41833,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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" @@ -41923,7 +41923,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -42019,7 +42019,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42109,7 +42109,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42199,7 +42199,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42292,7 +42292,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" } ] }, @@ -42376,7 +42376,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -42475,7 +42475,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -42564,7 +42564,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -42658,7 +42658,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42743,7 +42743,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -42831,7 +42831,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -42928,7 +42928,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43022,7 +43022,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -43111,7 +43111,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43191,7 +43191,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -43270,7 +43270,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -43363,7 +43363,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -43455,7 +43455,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43546,7 +43546,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43637,7 +43637,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -43729,7 +43729,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43811,7 +43811,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43905,7 +43905,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -43997,7 +43997,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -44100,7 +44100,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44202,7 +44202,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44301,7 +44301,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44383,7 +44383,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44477,7 +44477,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44559,7 +44559,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44653,7 +44653,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44742,7 +44742,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44840,7 +44840,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44922,7 +44922,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -45024,7 +45024,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -45126,7 +45126,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -45219,7 +45219,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45320,7 +45320,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -45426,7 +45426,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -45526,7 +45526,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -45621,7 +45621,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -45733,7 +45733,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -45818,7 +45818,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -45903,7 +45903,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -46000,7 +46000,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -46104,7 +46104,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -46204,7 +46204,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -46390,7 +46390,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46482,7 +46482,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -46583,7 +46583,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46702,7 +46702,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -46800,7 +46800,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -46899,7 +46899,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47012,7 +47012,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47101,7 +47101,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47188,7 +47188,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47283,7 +47283,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47370,7 +47370,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -47471,7 +47471,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -47548,7 +47548,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47651,7 +47651,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47743,7 +47743,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47838,7 +47838,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -47923,7 +47923,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48003,7 +48003,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48097,7 +48097,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -48191,7 +48191,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48290,7 +48290,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48388,7 +48388,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48505,7 +48505,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48618,7 +48618,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -48729,7 +48729,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48854,7 +48854,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48952,7 +48952,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49058,7 +49058,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49168,7 +49168,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49248,7 +49248,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49337,7 +49337,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49440,7 +49440,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -49535,7 +49535,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49625,7 +49625,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49726,7 +49726,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49805,7 +49805,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -49904,7 +49904,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50056,7 +50056,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50155,7 +50155,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50246,7 +50246,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50373,7 +50373,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -50443,7 +50443,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50537,7 +50537,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50625,7 +50625,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50701,7 +50701,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50790,7 +50790,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" } ] }, @@ -50868,7 +50868,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50969,7 +50969,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51039,7 +51039,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51127,7 +51127,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51209,7 +51209,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -51286,7 +51286,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51383,7 +51383,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51466,7 +51466,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51551,7 +51551,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51627,7 +51627,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" } ] }, @@ -51704,7 +51704,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51801,7 +51801,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51883,7 +51883,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51971,7 +51971,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -52060,7 +52060,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52163,7 +52163,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52269,7 +52269,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -52345,7 +52345,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52585,7 +52585,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52677,7 +52677,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -52764,7 +52764,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52871,7 +52871,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52959,7 +52959,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53061,7 +53061,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53194,7 +53194,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53324,7 +53324,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53391,7 +53391,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53476,7 +53476,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53555,7 +53555,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53643,7 +53643,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53745,7 +53745,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -53834,7 +53834,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53977,7 +53977,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54068,7 +54068,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54138,7 +54138,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54254,7 +54254,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54373,7 +54373,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54484,7 +54484,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54566,7 +54566,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54661,7 +54661,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" } ] }, @@ -54754,7 +54754,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54870,7 +54870,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -54983,7 +54983,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -55063,7 +55063,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -55147,7 +55147,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -55225,7 +55225,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -55303,7 +55303,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -55385,7 +55385,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -55478,7 +55478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -55549,7 +55549,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55628,7 +55628,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55725,7 +55725,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" } ] }, @@ -55823,7 +55823,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55932,7 +55932,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56020,7 +56020,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56108,7 +56108,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56194,7 +56194,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56270,7 +56270,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56346,7 +56346,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -56410,7 +56410,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" } ] }, @@ -56475,7 +56475,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56551,7 +56551,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56615,7 +56615,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56679,7 +56679,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56746,7 +56746,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56813,7 +56813,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" } ] } @@ -56880,7 +56880,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57008,7 +57008,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57101,7 +57101,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57190,7 +57190,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57272,7 +57272,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" } ] }, @@ -57352,7 +57352,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57449,7 +57449,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57519,7 +57519,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57598,7 +57598,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57677,7 +57677,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" } ] }, @@ -57757,7 +57757,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57851,7 +57851,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57936,7 +57936,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58037,7 +58037,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58119,7 +58119,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58201,7 +58201,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58302,7 +58302,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58397,7 +58397,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -58490,7 +58490,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58583,7 +58583,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58665,7 +58665,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58735,7 +58735,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58814,7 +58814,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58895,7 +58895,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58986,7 +58986,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59076,7 +59076,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -59164,7 +59164,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59263,7 +59263,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59348,7 +59348,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59442,7 +59442,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -59537,7 +59537,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59651,7 +59651,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59755,7 +59755,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -59860,7 +59860,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59932,7 +59932,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60016,7 +60016,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60098,7 +60098,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60177,7 +60177,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60259,7 +60259,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -60342,7 +60342,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60418,7 +60418,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60496,7 +60496,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60572,7 +60572,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60659,7 +60659,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60746,7 +60746,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60872,7 +60872,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60959,7 +60959,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61043,7 +61043,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61178,7 +61178,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61420,7 +61420,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61516,7 +61516,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61636,7 +61636,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61772,7 +61772,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61899,7 +61899,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61972,7 +61972,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" } ] }, @@ -62043,7 +62043,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62126,7 +62126,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -62209,7 +62209,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62291,7 +62291,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62367,7 +62367,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62443,7 +62443,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62525,7 +62525,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62616,7 +62616,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62713,7 +62713,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62807,7 +62807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62898,7 +62898,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62990,7 +62990,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63069,7 +63069,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63152,7 +63152,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63237,7 +63237,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" } ] }, @@ -63320,7 +63320,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63411,7 +63411,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63487,7 +63487,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63567,7 +63567,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63647,7 +63647,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -63724,7 +63724,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63815,7 +63815,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -63908,7 +63908,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63981,7 +63981,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64063,7 +64063,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64136,7 +64136,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64215,7 +64215,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64297,7 +64297,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" } ] }, @@ -64382,7 +64382,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64476,7 +64476,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64585,7 +64585,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -64670,7 +64670,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64761,7 +64761,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64852,7 +64852,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -64935,7 +64935,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65038,7 +65038,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65131,7 +65131,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65219,7 +65219,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -65308,7 +65308,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -65399,7 +65399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65490,7 +65490,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65581,7 +65581,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -65666,7 +65666,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65758,7 +65758,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65844,7 +65844,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" } ] }, @@ -65945,7 +65945,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66012,7 +66012,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -66091,7 +66091,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66155,7 +66155,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" } ] } @@ -66222,7 +66222,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66303,7 +66303,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66382,7 +66382,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66476,7 +66476,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66558,7 +66558,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" } ] } @@ -66654,7 +66654,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -66729,7 +66729,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66819,7 +66819,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" } ] }, @@ -66904,7 +66904,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -66980,7 +66980,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" } ] }, @@ -67054,7 +67054,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" } ] }, @@ -67139,7 +67139,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67219,7 +67219,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67299,7 +67299,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67382,7 +67382,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" } ] }, @@ -67463,7 +67463,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67558,7 +67558,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67650,7 +67650,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67756,7 +67756,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67856,7 +67856,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -67951,7 +67951,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68029,7 +68029,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68120,7 +68120,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68235,7 +68235,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68326,7 +68326,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68399,7 +68399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68489,7 +68489,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68574,7 +68574,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68656,7 +68656,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] }, @@ -68738,7 +68738,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68820,7 +68820,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" } ] }, @@ -68900,7 +68900,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68994,7 +68994,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69152,7 +69152,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69222,7 +69222,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69310,7 +69310,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69391,7 +69391,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-05-30+csv\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -69464,7 +69464,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69531,7 +69531,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" } ] }, @@ -69610,7 +69610,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69686,7 +69686,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -69765,7 +69765,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69841,7 +69841,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -69918,7 +69918,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70009,7 +70009,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70094,7 +70094,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70184,7 +70184,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70269,7 +70269,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -70342,7 +70342,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70424,7 +70424,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70510,7 +70510,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70599,7 +70599,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70685,7 +70685,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70774,7 +70774,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" } ] }, @@ -70861,7 +70861,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70962,7 +70962,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71060,7 +71060,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -71164,7 +71164,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71262,7 +71262,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -71344,7 +71344,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -71429,7 +71429,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" } ] } @@ -71525,7 +71525,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -71578,7 +71578,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-05-30+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" } ] } @@ -71656,7 +71656,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71733,7 +71733,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -71812,7 +71812,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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 906499b8e1..f4c2c1f6ba 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 @@ -29905,8 +29905,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" /api/atlas/v2/alertConfigs/matchers/fieldNames: @@ -29975,8 +29975,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" /api/atlas/v2/clusters: @@ -30046,8 +30046,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" /api/atlas/v2/eventTypes: @@ -30117,8 +30117,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}: @@ -30186,8 +30186,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: @@ -30260,8 +30260,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: @@ -30342,8 +30342,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" get: @@ -30423,8 +30423,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" patch: @@ -30513,8 +30513,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30588,8 +30588,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -30669,8 +30669,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -30752,8 +30752,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" get: @@ -30834,8 +30834,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" put: @@ -30925,8 +30925,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31023,8 +31023,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" post: @@ -31108,8 +31108,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31187,8 +31187,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" get: @@ -31267,8 +31267,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" patch: @@ -31357,8 +31357,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31436,8 +31436,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: @@ -31508,8 +31508,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups: @@ -31581,8 +31581,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" post: @@ -31673,8 +31673,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -31746,8 +31746,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" get: @@ -31816,8 +31816,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" patch: @@ -31899,8 +31899,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31984,8 +31984,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32061,8 +32061,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" post: @@ -32150,8 +32150,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32239,8 +32239,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" get: @@ -32322,8 +32322,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: @@ -32405,8 +32405,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alertConfigs: @@ -32480,8 +32480,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" post: @@ -32562,8 +32562,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32646,8 +32646,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" get: @@ -32729,8 +32729,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" patch: @@ -32823,8 +32823,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32921,8 +32921,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33010,8 +33010,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alerts: @@ -33096,8 +33096,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" /api/atlas/v2/groups/{groupId}/alerts/{alertId}: @@ -33179,8 +33179,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" patch: @@ -33272,8 +33272,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33360,8 +33360,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/apiKeys: @@ -33435,8 +33435,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" post: @@ -33512,8 +33512,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33597,8 +33597,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" patch: @@ -33688,8 +33688,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33778,8 +33778,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33849,8 +33849,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" patch: @@ -33928,8 +33928,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33999,8 +33999,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" patch: @@ -34076,8 +34076,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34150,8 +34150,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" post: @@ -34270,8 +34270,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34354,8 +34354,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" get: @@ -34456,8 +34456,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: @@ -34527,8 +34527,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" put: @@ -34615,8 +34615,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34686,8 +34686,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" post: @@ -34766,8 +34766,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34854,8 +34854,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: @@ -34932,8 +34932,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" patch: @@ -35025,8 +35025,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35106,8 +35106,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" x-sunset: "2026-03-01" @@ -35193,8 +35193,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35283,8 +35283,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" get: @@ -35365,8 +35365,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" x-sunset: "2026-03-01" @@ -35459,8 +35459,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35594,8 +35594,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: @@ -35684,8 +35684,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: @@ -35765,8 +35765,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -35856,8 +35856,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35941,8 +35941,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: @@ -36022,8 +36022,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -36117,8 +36117,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36208,8 +36208,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -36294,8 +36294,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: @@ -36374,8 +36374,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" x-sunset: "2025-08-05" @@ -36453,8 +36453,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-08-05" @@ -36546,8 +36546,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36632,8 +36632,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -36723,8 +36723,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36814,8 +36814,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -36902,8 +36902,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -36999,8 +36999,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -37088,8 +37088,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -37176,8 +37176,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: @@ -37256,8 +37256,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: @@ -37351,8 +37351,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37446,8 +37446,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37528,8 +37528,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: @@ -37617,8 +37617,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: @@ -37697,8 +37697,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: @@ -37786,8 +37786,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: @@ -37868,8 +37868,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: @@ -37960,8 +37960,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: @@ -38041,8 +38041,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -38137,8 +38137,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38235,8 +38235,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38327,8 +38327,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38424,8 +38424,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38523,8 +38523,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -38617,8 +38617,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" x-sunset: "2025-06-01" @@ -38708,8 +38708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -38812,8 +38812,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -38897,8 +38897,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -38980,8 +38980,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" x-sunset: "2026-03-01" @@ -39073,8 +39073,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39170,8 +39170,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" x-sunset: "2026-03-01" @@ -39265,8 +39265,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39423,8 +39423,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39509,8 +39509,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -39604,8 +39604,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39698,8 +39698,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" get: @@ -39791,8 +39791,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -39895,8 +39895,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40006,8 +40006,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" @@ -40092,8 +40092,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" get: @@ -40176,8 +40176,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -40267,8 +40267,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40353,8 +40353,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2026-03-01" @@ -40449,8 +40449,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40530,8 +40530,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40627,8 +40627,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -40716,8 +40716,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40811,8 +40811,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: @@ -40893,8 +40893,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" get: @@ -40972,8 +40972,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41062,8 +41062,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41154,8 +41154,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41247,8 +41247,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -41340,8 +41340,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41445,8 +41445,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}: @@ -41546,8 +41546,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -41646,8 +41646,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41757,8 +41757,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -41851,8 +41851,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -41948,8 +41948,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42050,8 +42050,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42134,8 +42134,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42224,8 +42224,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42318,8 +42318,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: @@ -42408,8 +42408,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" get: @@ -42495,8 +42495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42591,8 +42591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42671,8 +42671,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion: @@ -42764,8 +42764,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42854,8 +42854,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42970,8 +42970,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" @@ -43055,8 +43055,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: @@ -43141,8 +43141,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43229,8 +43229,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43303,8 +43303,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" /api/atlas/v2/groups/{groupId}/containers: @@ -43388,8 +43388,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" post: @@ -43473,8 +43473,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43560,8 +43560,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" get: @@ -43638,8 +43638,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" patch: @@ -43733,8 +43733,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -43807,8 +43807,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" /api/atlas/v2/groups/{groupId}/customDBRoles/roles: @@ -43878,8 +43878,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" post: @@ -43963,8 +43963,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44044,8 +44044,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" get: @@ -44120,8 +44120,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -44211,8 +44211,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44293,8 +44293,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" post: @@ -44376,8 +44376,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44453,8 +44453,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" get: @@ -44530,8 +44530,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" patch: @@ -44621,8 +44621,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44702,8 +44702,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: @@ -44795,8 +44795,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" get: @@ -44888,8 +44888,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -44993,8 +44993,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45095,8 +45095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" @@ -45168,8 +45168,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" post: @@ -45344,8 +45344,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45445,8 +45445,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" get: @@ -45541,8 +45541,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -45652,8 +45652,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45734,8 +45734,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -45834,8 +45834,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45951,8 +45951,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: @@ -46063,8 +46063,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -46135,8 +46135,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" patch: @@ -46230,8 +46230,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46309,8 +46309,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -46394,8 +46394,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46489,8 +46489,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" get: @@ -46574,8 +46574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/events: @@ -46700,8 +46700,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" /api/atlas/v2/groups/{groupId}/events/{eventId}: @@ -46789,8 +46789,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: @@ -46860,8 +46860,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: @@ -46961,8 +46961,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: @@ -47061,8 +47061,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: @@ -47160,8 +47160,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/integrations: @@ -47236,8 +47236,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: @@ -47327,8 +47327,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" get: @@ -47417,8 +47417,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" post: @@ -47521,8 +47521,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -47625,8 +47625,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -47705,8 +47705,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" x-sunset: "2024-10-04" @@ -47788,8 +47788,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47869,8 +47869,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47950,8 +47950,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" x-sunset: "2024-10-04" @@ -48031,8 +48031,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" x-sunset: "2024-10-04" @@ -48122,8 +48122,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48196,8 +48196,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" /api/atlas/v2/groups/{groupId}/limits: @@ -48273,8 +48273,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" /api/atlas/v2/groups/{groupId}/limits/{limitName}: @@ -48382,8 +48382,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" get: @@ -48492,8 +48492,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" patch: @@ -48614,8 +48614,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48708,8 +48708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48784,8 +48784,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: @@ -48860,8 +48860,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48947,8 +48947,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49033,8 +49033,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/maintenanceWindow: @@ -49101,8 +49101,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" get: @@ -49169,8 +49169,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: @@ -49247,8 +49247,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49319,8 +49319,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49391,8 +49391,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49462,8 +49462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: @@ -49531,8 +49531,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: @@ -49602,8 +49602,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49714,8 +49714,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -49798,8 +49798,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" post: @@ -49884,8 +49884,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49966,8 +49966,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" get: @@ -50045,8 +50045,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" patch: @@ -50137,8 +50137,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -50211,8 +50211,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: @@ -50291,8 +50291,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50372,8 +50372,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" get: @@ -50451,8 +50451,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" patch: @@ -50542,8 +50542,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -50626,8 +50626,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: @@ -50716,8 +50716,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: @@ -50798,8 +50798,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50882,8 +50882,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50974,8 +50974,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: @@ -51064,8 +51064,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" get: @@ -51153,8 +51153,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: @@ -51242,8 +51242,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51326,8 +51326,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: @@ -51415,8 +51415,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" get: @@ -51505,8 +51505,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: @@ -51609,8 +51609,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51707,8 +51707,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -51804,8 +51804,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: @@ -51885,8 +51885,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51958,8 +51958,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" patch: @@ -52037,8 +52037,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52119,8 +52119,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -52211,8 +52211,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52300,8 +52300,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -52386,8 +52386,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -52481,8 +52481,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -52556,8 +52556,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" patch: @@ -52639,8 +52639,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52717,8 +52717,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" post: @@ -52815,8 +52815,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52897,8 +52897,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" get: @@ -52978,8 +52978,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes: @@ -53050,8 +53050,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}: @@ -53127,8 +53127,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: @@ -53239,8 +53239,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: @@ -53311,8 +53311,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -53391,8 +53391,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: @@ -53474,8 +53474,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: @@ -53583,8 +53583,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: @@ -53663,8 +53663,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: @@ -53745,8 +53745,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: @@ -53870,8 +53870,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: @@ -54106,8 +54106,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: @@ -54203,8 +54203,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: @@ -54317,8 +54317,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: @@ -54438,8 +54438,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pushBasedLogExport: @@ -54511,8 +54511,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" get: @@ -54583,8 +54583,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" patch: @@ -54665,8 +54665,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54749,8 +54749,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -54834,8 +54834,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -54913,8 +54913,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" /api/atlas/v2/groups/{groupId}/serverless: @@ -54985,8 +54985,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" post: @@ -55066,8 +55066,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55151,8 +55151,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -55243,8 +55243,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55334,8 +55334,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: @@ -55417,8 +55417,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: @@ -55506,8 +55506,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: @@ -55584,8 +55584,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -55668,8 +55668,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55752,8 +55752,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" get: @@ -55833,8 +55833,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" patch: @@ -55921,8 +55921,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55996,8 +55996,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" post: @@ -56076,8 +56076,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56156,8 +56156,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" get: @@ -56232,8 +56232,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -56319,8 +56319,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56410,8 +56410,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56485,8 +56485,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: @@ -56566,8 +56566,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56639,8 +56639,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" post: @@ -56718,8 +56718,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56799,8 +56799,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" get: @@ -56881,8 +56881,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" patch: @@ -56970,8 +56970,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57073,8 +57073,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" @@ -57153,8 +57153,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -57240,8 +57240,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57327,8 +57327,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" get: @@ -57408,8 +57408,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -57503,8 +57503,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57593,8 +57593,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57678,8 +57678,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" get: @@ -57762,8 +57762,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start: @@ -57849,8 +57849,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57938,8 +57938,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58022,8 +58022,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/teams: @@ -58100,8 +58100,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" post: @@ -58188,8 +58188,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58274,8 +58274,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" patch: @@ -58369,8 +58369,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -58440,8 +58440,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" patch: @@ -58522,8 +58522,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58595,8 +58595,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: @@ -58664,8 +58664,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: @@ -58744,8 +58744,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58824,8 +58824,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/users: @@ -58908,8 +58908,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" /api/atlas/v2/groups/{groupId}/users/{userId}: @@ -58988,8 +58988,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" /api/atlas/v2/groups/{groupId}/users/{userId}/roles: @@ -59079,8 +59079,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59158,8 +59158,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59242,8 +59242,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" /api/atlas/v2/orgs: @@ -59324,8 +59324,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" post: @@ -59408,8 +59408,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -59491,8 +59491,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" get: @@ -59565,8 +59565,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" patch: @@ -59648,8 +59648,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -59725,8 +59725,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" post: @@ -59805,8 +59805,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59888,8 +59888,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" get: @@ -59968,8 +59968,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" patch: @@ -60059,8 +60059,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -60145,8 +60145,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -60240,8 +60240,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60335,8 +60335,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" get: @@ -60425,8 +60425,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: @@ -60504,8 +60504,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60593,8 +60593,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/events: @@ -60697,8 +60697,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" /api/atlas/v2/orgs/{orgId}/events/{eventId}: @@ -60786,8 +60786,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" /api/atlas/v2/orgs/{orgId}/federationSettings: @@ -60859,8 +60859,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" /api/atlas/v2/orgs/{orgId}/groups: @@ -60948,8 +60948,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" /api/atlas/v2/orgs/{orgId}/invites: @@ -61029,8 +61029,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" patch: @@ -61110,8 +61110,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61193,8 +61193,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61274,8 +61274,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" get: @@ -61354,8 +61354,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" patch: @@ -61444,8 +61444,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -61579,8 +61579,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: @@ -61665,8 +61665,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: @@ -61752,8 +61752,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/pending: @@ -61823,8 +61823,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: @@ -61896,8 +61896,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: @@ -61966,8 +61966,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" post: @@ -62045,8 +62045,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62120,8 +62120,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" post: @@ -62199,8 +62199,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62276,8 +62276,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" get: @@ -62352,8 +62352,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -62439,8 +62439,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -62520,8 +62520,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: @@ -62606,8 +62606,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62689,8 +62689,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" /api/atlas/v2/orgs/{orgId}/settings: @@ -62762,8 +62762,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" patch: @@ -62843,8 +62843,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62924,8 +62924,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" post: @@ -63010,8 +63010,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63097,8 +63097,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" get: @@ -63181,8 +63181,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" patch: @@ -63276,8 +63276,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -63367,8 +63367,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -63464,8 +63464,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63558,8 +63558,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: @@ -63640,8 +63640,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/users: @@ -63716,8 +63716,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" /api/atlas/v2/orgs/{orgId}/users/{userId}: @@ -63799,8 +63799,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: @@ -63890,8 +63890,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63955,8 +63955,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" /api/atlas/v2/users: @@ -64039,8 +64039,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -64120,8 +64120,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" /api/atlas/v2/users/byName/{userName}: @@ -64197,8 +64197,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-05-30+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" servers: 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 21634531c3..c47658c974 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 @@ -36816,7 +36816,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" } ] } @@ -36883,7 +36883,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -36956,7 +36956,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" } ] } @@ -37029,7 +37029,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" } ] } @@ -37093,7 +37093,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" } ] } @@ -37169,7 +37169,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -37252,7 +37252,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" } ] }, @@ -37333,7 +37333,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37425,7 +37425,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -37498,7 +37498,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37580,7 +37580,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -37663,7 +37663,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -37747,7 +37747,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37842,7 +37842,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -37950,7 +37950,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -38032,7 +38032,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -38109,7 +38109,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" } ] }, @@ -38190,7 +38190,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -38279,7 +38279,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -38356,7 +38356,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -38426,7 +38426,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -38502,7 +38502,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" } ] }, @@ -38598,7 +38598,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 --include \\\n --header \"Accept: 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 '{ }'" } ] } @@ -38682,7 +38682,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\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\"" } ] } @@ -38752,7 +38752,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -38820,7 +38820,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" } ] }, @@ -38905,7 +38905,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -38991,7 +38991,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39071,7 +39071,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39169,7 +39169,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39254,7 +39254,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" } ] }, @@ -39340,7 +39340,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39427,7 +39427,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39503,7 +39503,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39582,7 +39582,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39662,7 +39662,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" } ] }, @@ -39743,7 +39743,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39835,7 +39835,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -39930,7 +39930,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -40022,7 +40022,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40114,7 +40114,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40196,7 +40196,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40290,7 +40290,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40381,7 +40381,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40461,7 +40461,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40537,7 +40537,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40623,7 +40623,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" } ] }, @@ -40723,7 +40723,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -40814,7 +40814,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40881,7 +40881,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40960,7 +40960,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41027,7 +41027,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41103,7 +41103,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41179,7 +41179,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41316,7 +41316,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41399,7 +41399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -41511,7 +41511,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -41581,7 +41581,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41673,7 +41673,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -41740,7 +41740,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41820,7 +41820,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41911,7 +41911,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] } @@ -41990,7 +41990,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -42088,7 +42088,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42173,7 +42173,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -42268,7 +42268,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42363,7 +42363,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42453,7 +42453,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42543,7 +42543,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42636,7 +42636,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" } ] }, @@ -42719,7 +42719,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -42817,7 +42817,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42905,7 +42905,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -42999,7 +42999,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43084,7 +43084,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43172,7 +43172,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43269,7 +43269,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43363,7 +43363,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -43452,7 +43452,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43531,7 +43531,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -43608,7 +43608,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43699,7 +43699,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43790,7 +43790,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43881,7 +43881,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43972,7 +43972,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -44064,7 +44064,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44146,7 +44146,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44240,7 +44240,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -44332,7 +44332,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -44435,7 +44435,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44537,7 +44537,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44636,7 +44636,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44718,7 +44718,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44812,7 +44812,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44894,7 +44894,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44988,7 +44988,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45077,7 +45077,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45175,7 +45175,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45257,7 +45257,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -45359,7 +45359,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -45461,7 +45461,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -45554,7 +45554,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45655,7 +45655,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -45761,7 +45761,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -45861,7 +45861,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -45956,7 +45956,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -46068,7 +46068,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -46152,7 +46152,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -46235,7 +46235,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46331,7 +46331,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46433,7 +46433,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46532,7 +46532,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46717,7 +46717,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46809,7 +46809,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -46910,7 +46910,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47029,7 +47029,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -47127,7 +47127,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -47226,7 +47226,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47339,7 +47339,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47428,7 +47428,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47515,7 +47515,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47610,7 +47610,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47696,7 +47696,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47795,7 +47795,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47871,7 +47871,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47974,7 +47974,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48066,7 +48066,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48161,7 +48161,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48246,7 +48246,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48326,7 +48326,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48420,7 +48420,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -48514,7 +48514,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48613,7 +48613,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48711,7 +48711,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48828,7 +48828,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48941,7 +48941,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49052,7 +49052,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49177,7 +49177,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49275,7 +49275,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49381,7 +49381,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49491,7 +49491,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49571,7 +49571,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49660,7 +49660,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49763,7 +49763,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -49858,7 +49858,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49948,7 +49948,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -50049,7 +50049,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50128,7 +50128,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50227,7 +50227,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50379,7 +50379,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50478,7 +50478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50569,7 +50569,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50696,7 +50696,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -50766,7 +50766,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -50860,7 +50860,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -50948,7 +50948,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51024,7 +51024,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51113,7 +51113,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" } ] }, @@ -51191,7 +51191,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51292,7 +51292,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51362,7 +51362,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51450,7 +51450,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51532,7 +51532,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -51609,7 +51609,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51706,7 +51706,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51789,7 +51789,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51874,7 +51874,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51950,7 +51950,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" } ] }, @@ -52027,7 +52027,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52124,7 +52124,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52206,7 +52206,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52294,7 +52294,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -52383,7 +52383,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52486,7 +52486,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52592,7 +52592,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -52668,7 +52668,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52908,7 +52908,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53000,7 +53000,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -53087,7 +53087,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53194,7 +53194,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53282,7 +53282,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53384,7 +53384,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53517,7 +53517,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53647,7 +53647,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -53714,7 +53714,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53799,7 +53799,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53878,7 +53878,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53966,7 +53966,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54068,7 +54068,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -54157,7 +54157,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54300,7 +54300,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54391,7 +54391,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54461,7 +54461,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54577,7 +54577,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54696,7 +54696,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54807,7 +54807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54889,7 +54889,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54984,7 +54984,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" } ] }, @@ -55077,7 +55077,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55193,7 +55193,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -55306,7 +55306,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -55386,7 +55386,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -55470,7 +55470,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -55548,7 +55548,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -55626,7 +55626,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -55708,7 +55708,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -55801,7 +55801,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -55872,7 +55872,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55951,7 +55951,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56048,7 +56048,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" } ] }, @@ -56146,7 +56146,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56255,7 +56255,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56343,7 +56343,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56431,7 +56431,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56517,7 +56517,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56593,7 +56593,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56669,7 +56669,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -56733,7 +56733,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" } ] }, @@ -56798,7 +56798,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56874,7 +56874,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56938,7 +56938,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57002,7 +57002,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57069,7 +57069,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57136,7 +57136,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" } ] } @@ -57203,7 +57203,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57331,7 +57331,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57424,7 +57424,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57513,7 +57513,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57595,7 +57595,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" } ] }, @@ -57675,7 +57675,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57772,7 +57772,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57842,7 +57842,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57921,7 +57921,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58000,7 +58000,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" } ] }, @@ -58080,7 +58080,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58174,7 +58174,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58259,7 +58259,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58360,7 +58360,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58442,7 +58442,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58524,7 +58524,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58625,7 +58625,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58720,7 +58720,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -58813,7 +58813,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58906,7 +58906,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58988,7 +58988,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59058,7 +59058,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59137,7 +59137,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59218,7 +59218,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59309,7 +59309,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59399,7 +59399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -59487,7 +59487,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59586,7 +59586,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59671,7 +59671,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59765,7 +59765,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -59860,7 +59860,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59974,7 +59974,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60078,7 +60078,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -60183,7 +60183,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60255,7 +60255,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60339,7 +60339,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60421,7 +60421,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60500,7 +60500,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60582,7 +60582,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -60665,7 +60665,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60741,7 +60741,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60819,7 +60819,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60895,7 +60895,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60982,7 +60982,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61069,7 +61069,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61195,7 +61195,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61282,7 +61282,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61366,7 +61366,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61501,7 +61501,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61743,7 +61743,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61839,7 +61839,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61959,7 +61959,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62095,7 +62095,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62222,7 +62222,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62295,7 +62295,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" } ] }, @@ -62366,7 +62366,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62449,7 +62449,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -62532,7 +62532,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62614,7 +62614,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62690,7 +62690,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62766,7 +62766,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62848,7 +62848,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -62939,7 +62939,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63036,7 +63036,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63130,7 +63130,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63221,7 +63221,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63313,7 +63313,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63392,7 +63392,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63475,7 +63475,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63560,7 +63560,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" } ] }, @@ -63643,7 +63643,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63734,7 +63734,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63810,7 +63810,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63890,7 +63890,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63970,7 +63970,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -64047,7 +64047,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64138,7 +64138,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -64231,7 +64231,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64304,7 +64304,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64386,7 +64386,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64459,7 +64459,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64538,7 +64538,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64620,7 +64620,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" } ] }, @@ -64705,7 +64705,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64799,7 +64799,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64908,7 +64908,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -64993,7 +64993,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65084,7 +65084,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65175,7 +65175,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -65258,7 +65258,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65361,7 +65361,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65454,7 +65454,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65542,7 +65542,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -65631,7 +65631,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -65722,7 +65722,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65813,7 +65813,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65904,7 +65904,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -65989,7 +65989,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -66081,7 +66081,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66167,7 +66167,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" } ] }, @@ -66268,7 +66268,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66335,7 +66335,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -66414,7 +66414,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66478,7 +66478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" } ] } @@ -66545,7 +66545,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66626,7 +66626,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66705,7 +66705,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66799,7 +66799,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66881,7 +66881,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" } ] } @@ -66977,7 +66977,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -67052,7 +67052,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67142,7 +67142,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" } ] }, @@ -67227,7 +67227,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67303,7 +67303,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" } ] }, @@ -67377,7 +67377,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" } ] }, @@ -67462,7 +67462,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67542,7 +67542,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67622,7 +67622,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67705,7 +67705,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" } ] }, @@ -67786,7 +67786,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -67881,7 +67881,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -67973,7 +67973,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68079,7 +68079,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68179,7 +68179,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -68274,7 +68274,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68352,7 +68352,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68443,7 +68443,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68558,7 +68558,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68649,7 +68649,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68722,7 +68722,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68812,7 +68812,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -68897,7 +68897,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68979,7 +68979,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] }, @@ -69061,7 +69061,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69143,7 +69143,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" } ] }, @@ -69223,7 +69223,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -69317,7 +69317,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69475,7 +69475,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69545,7 +69545,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69633,7 +69633,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69714,7 +69714,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2024-08-05+csv\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -69787,7 +69787,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69854,7 +69854,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" } ] }, @@ -69933,7 +69933,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70009,7 +70009,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70088,7 +70088,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70164,7 +70164,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -70241,7 +70241,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70332,7 +70332,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70417,7 +70417,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70507,7 +70507,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70592,7 +70592,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -70665,7 +70665,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70747,7 +70747,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70833,7 +70833,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70922,7 +70922,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71008,7 +71008,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -71097,7 +71097,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" } ] }, @@ -71184,7 +71184,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -71285,7 +71285,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71383,7 +71383,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -71487,7 +71487,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71585,7 +71585,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -71667,7 +71667,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -71752,7 +71752,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" } ] } @@ -71848,7 +71848,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -71901,7 +71901,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2024-08-05+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" } ] } @@ -71979,7 +71979,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -72056,7 +72056,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -72135,7 +72135,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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 7b7ae22e60..7265570e68 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 @@ -30183,8 +30183,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" /api/atlas/v2/alertConfigs/matchers/fieldNames: @@ -30253,8 +30253,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" /api/atlas/v2/clusters: @@ -30324,8 +30324,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" /api/atlas/v2/eventTypes: @@ -30395,8 +30395,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}: @@ -30464,8 +30464,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: @@ -30538,8 +30538,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: @@ -30620,8 +30620,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" get: @@ -30701,8 +30701,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" patch: @@ -30791,8 +30791,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -30866,8 +30866,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -30947,8 +30947,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31030,8 +31030,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" get: @@ -31112,8 +31112,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" put: @@ -31203,8 +31203,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31301,8 +31301,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" post: @@ -31386,8 +31386,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31465,8 +31465,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" get: @@ -31545,8 +31545,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" patch: @@ -31635,8 +31635,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31714,8 +31714,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: @@ -31786,8 +31786,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups: @@ -31859,8 +31859,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" post: @@ -31951,8 +31951,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -32024,8 +32024,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" get: @@ -32094,8 +32094,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" patch: @@ -32177,8 +32177,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32262,8 +32262,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32339,8 +32339,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" post: @@ -32428,8 +32428,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32517,8 +32517,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" get: @@ -32600,8 +32600,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: @@ -32683,8 +32683,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alertConfigs: @@ -32758,8 +32758,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" post: @@ -32840,8 +32840,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32924,8 +32924,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" get: @@ -33007,8 +33007,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" patch: @@ -33101,8 +33101,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33199,8 +33199,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33288,8 +33288,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alerts: @@ -33374,8 +33374,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" /api/atlas/v2/groups/{groupId}/alerts/{alertId}: @@ -33457,8 +33457,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" patch: @@ -33550,8 +33550,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33638,8 +33638,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/apiKeys: @@ -33713,8 +33713,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" post: @@ -33790,8 +33790,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33875,8 +33875,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" patch: @@ -33966,8 +33966,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34056,8 +34056,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34127,8 +34127,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" patch: @@ -34206,8 +34206,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34277,8 +34277,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" patch: @@ -34354,8 +34354,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34428,8 +34428,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" post: @@ -34548,8 +34548,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34632,8 +34632,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" get: @@ -34734,8 +34734,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: @@ -34805,8 +34805,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" put: @@ -34893,8 +34893,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34964,8 +34964,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" post: @@ -35044,8 +35044,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35132,8 +35132,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: @@ -35210,8 +35210,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" patch: @@ -35303,8 +35303,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35383,8 +35383,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" post: @@ -35596,8 +35596,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35685,8 +35685,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" get: @@ -35766,8 +35766,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" patch: @@ -35859,8 +35859,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35993,8 +35993,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: @@ -36083,8 +36083,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: @@ -36164,8 +36164,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -36255,8 +36255,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36340,8 +36340,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: @@ -36421,8 +36421,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -36516,8 +36516,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36607,8 +36607,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -36693,8 +36693,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: @@ -36772,8 +36772,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" get: @@ -36849,8 +36849,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -36940,8 +36940,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37025,8 +37025,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -37116,8 +37116,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37207,8 +37207,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -37295,8 +37295,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -37392,8 +37392,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -37481,8 +37481,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -37569,8 +37569,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: @@ -37649,8 +37649,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: @@ -37744,8 +37744,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37839,8 +37839,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37921,8 +37921,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: @@ -38010,8 +38010,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: @@ -38090,8 +38090,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: @@ -38179,8 +38179,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: @@ -38261,8 +38261,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: @@ -38353,8 +38353,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: @@ -38434,8 +38434,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -38530,8 +38530,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38628,8 +38628,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38720,8 +38720,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38817,8 +38817,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38916,8 +38916,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -39010,8 +39010,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" x-sunset: "2025-06-01" @@ -39101,8 +39101,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -39205,8 +39205,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -39289,8 +39289,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: @@ -39370,8 +39370,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" post: @@ -39462,8 +39462,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39557,8 +39557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" post: @@ -39651,8 +39651,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39808,8 +39808,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39894,8 +39894,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -39989,8 +39989,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40083,8 +40083,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" get: @@ -40176,8 +40176,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -40280,8 +40280,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40391,8 +40391,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" @@ -40477,8 +40477,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" get: @@ -40561,8 +40561,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -40652,8 +40652,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40737,8 +40737,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -40831,8 +40831,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40911,8 +40911,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41008,8 +41008,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -41097,8 +41097,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41192,8 +41192,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: @@ -41274,8 +41274,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" get: @@ -41353,8 +41353,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41443,8 +41443,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41535,8 +41535,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41628,8 +41628,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -41721,8 +41721,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41826,8 +41826,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}: @@ -41927,8 +41927,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -42027,8 +42027,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42138,8 +42138,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42232,8 +42232,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -42329,8 +42329,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42431,8 +42431,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42515,8 +42515,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42605,8 +42605,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42699,8 +42699,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: @@ -42789,8 +42789,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" get: @@ -42876,8 +42876,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42972,8 +42972,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -43052,8 +43052,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion: @@ -43145,8 +43145,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43235,8 +43235,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43351,8 +43351,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" @@ -43436,8 +43436,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: @@ -43522,8 +43522,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43610,8 +43610,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43684,8 +43684,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" /api/atlas/v2/groups/{groupId}/containers: @@ -43769,8 +43769,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" post: @@ -43854,8 +43854,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43941,8 +43941,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" get: @@ -44019,8 +44019,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" patch: @@ -44114,8 +44114,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44188,8 +44188,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" /api/atlas/v2/groups/{groupId}/customDBRoles/roles: @@ -44259,8 +44259,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" post: @@ -44344,8 +44344,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44425,8 +44425,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" get: @@ -44501,8 +44501,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -44592,8 +44592,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44674,8 +44674,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" post: @@ -44757,8 +44757,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44834,8 +44834,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" get: @@ -44911,8 +44911,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" patch: @@ -45002,8 +45002,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45083,8 +45083,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: @@ -45176,8 +45176,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" get: @@ -45269,8 +45269,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -45374,8 +45374,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45476,8 +45476,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" @@ -45549,8 +45549,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" post: @@ -45725,8 +45725,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45826,8 +45826,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" get: @@ -45922,8 +45922,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -46033,8 +46033,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46115,8 +46115,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -46215,8 +46215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46332,8 +46332,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: @@ -46444,8 +46444,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -46516,8 +46516,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" patch: @@ -46611,8 +46611,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46690,8 +46690,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -46775,8 +46775,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46870,8 +46870,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" get: @@ -46955,8 +46955,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/events: @@ -47081,8 +47081,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" /api/atlas/v2/groups/{groupId}/events/{eventId}: @@ -47170,8 +47170,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: @@ -47241,8 +47241,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: @@ -47342,8 +47342,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: @@ -47442,8 +47442,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: @@ -47541,8 +47541,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/integrations: @@ -47617,8 +47617,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: @@ -47708,8 +47708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" get: @@ -47798,8 +47798,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" post: @@ -47902,8 +47902,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48006,8 +48006,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48086,8 +48086,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" x-sunset: "2024-10-04" @@ -48169,8 +48169,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48250,8 +48250,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48331,8 +48331,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" x-sunset: "2024-10-04" @@ -48412,8 +48412,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" x-sunset: "2024-10-04" @@ -48503,8 +48503,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48577,8 +48577,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" /api/atlas/v2/groups/{groupId}/limits: @@ -48654,8 +48654,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" /api/atlas/v2/groups/{groupId}/limits/{limitName}: @@ -48763,8 +48763,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" get: @@ -48873,8 +48873,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" patch: @@ -48995,8 +48995,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -49089,8 +49089,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49165,8 +49165,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: @@ -49241,8 +49241,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49328,8 +49328,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49414,8 +49414,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/maintenanceWindow: @@ -49482,8 +49482,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" get: @@ -49550,8 +49550,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: @@ -49628,8 +49628,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49700,8 +49700,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49772,8 +49772,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49843,8 +49843,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: @@ -49912,8 +49912,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: @@ -49983,8 +49983,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50095,8 +50095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -50179,8 +50179,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" post: @@ -50265,8 +50265,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50347,8 +50347,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" get: @@ -50426,8 +50426,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" patch: @@ -50518,8 +50518,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -50592,8 +50592,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: @@ -50672,8 +50672,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50753,8 +50753,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" get: @@ -50832,8 +50832,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" patch: @@ -50923,8 +50923,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -51007,8 +51007,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: @@ -51097,8 +51097,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: @@ -51179,8 +51179,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51263,8 +51263,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51355,8 +51355,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: @@ -51445,8 +51445,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" get: @@ -51534,8 +51534,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: @@ -51623,8 +51623,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51707,8 +51707,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: @@ -51796,8 +51796,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" get: @@ -51886,8 +51886,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: @@ -51990,8 +51990,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52088,8 +52088,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -52185,8 +52185,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: @@ -52266,8 +52266,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52339,8 +52339,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" patch: @@ -52418,8 +52418,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52500,8 +52500,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -52592,8 +52592,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52681,8 +52681,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -52767,8 +52767,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -52862,8 +52862,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -52937,8 +52937,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" patch: @@ -53020,8 +53020,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53098,8 +53098,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" post: @@ -53196,8 +53196,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53278,8 +53278,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" get: @@ -53359,8 +53359,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes: @@ -53431,8 +53431,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}: @@ -53508,8 +53508,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: @@ -53620,8 +53620,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: @@ -53692,8 +53692,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -53772,8 +53772,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: @@ -53855,8 +53855,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: @@ -53964,8 +53964,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: @@ -54044,8 +54044,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: @@ -54126,8 +54126,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: @@ -54251,8 +54251,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/measurements: @@ -54487,8 +54487,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: @@ -54584,8 +54584,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: @@ -54698,8 +54698,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: @@ -54819,8 +54819,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pushBasedLogExport: @@ -54892,8 +54892,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" get: @@ -54964,8 +54964,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" patch: @@ -55046,8 +55046,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55130,8 +55130,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55215,8 +55215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55294,8 +55294,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" /api/atlas/v2/groups/{groupId}/serverless: @@ -55366,8 +55366,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" post: @@ -55447,8 +55447,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55532,8 +55532,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -55624,8 +55624,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55715,8 +55715,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: @@ -55798,8 +55798,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: @@ -55887,8 +55887,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: @@ -55965,8 +55965,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -56049,8 +56049,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56133,8 +56133,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" get: @@ -56214,8 +56214,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" patch: @@ -56302,8 +56302,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56377,8 +56377,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" post: @@ -56457,8 +56457,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56537,8 +56537,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" get: @@ -56613,8 +56613,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -56700,8 +56700,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56791,8 +56791,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56866,8 +56866,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: @@ -56947,8 +56947,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57020,8 +57020,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" post: @@ -57099,8 +57099,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57180,8 +57180,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" get: @@ -57262,8 +57262,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" patch: @@ -57351,8 +57351,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57454,8 +57454,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" @@ -57534,8 +57534,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -57621,8 +57621,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57708,8 +57708,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" get: @@ -57789,8 +57789,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -57884,8 +57884,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57974,8 +57974,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58059,8 +58059,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" get: @@ -58143,8 +58143,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start: @@ -58230,8 +58230,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58319,8 +58319,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58403,8 +58403,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/teams: @@ -58481,8 +58481,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" post: @@ -58569,8 +58569,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58655,8 +58655,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" patch: @@ -58750,8 +58750,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -58821,8 +58821,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" patch: @@ -58903,8 +58903,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58976,8 +58976,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: @@ -59045,8 +59045,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: @@ -59125,8 +59125,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59205,8 +59205,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/users: @@ -59289,8 +59289,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" /api/atlas/v2/groups/{groupId}/users/{userId}: @@ -59369,8 +59369,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" /api/atlas/v2/groups/{groupId}/users/{userId}/roles: @@ -59460,8 +59460,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59539,8 +59539,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59623,8 +59623,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" /api/atlas/v2/orgs: @@ -59705,8 +59705,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" post: @@ -59789,8 +59789,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -59872,8 +59872,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" get: @@ -59946,8 +59946,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" patch: @@ -60029,8 +60029,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -60106,8 +60106,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" post: @@ -60186,8 +60186,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60269,8 +60269,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" get: @@ -60349,8 +60349,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" patch: @@ -60440,8 +60440,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -60526,8 +60526,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -60621,8 +60621,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60716,8 +60716,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" get: @@ -60806,8 +60806,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: @@ -60885,8 +60885,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60974,8 +60974,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/events: @@ -61078,8 +61078,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" /api/atlas/v2/orgs/{orgId}/events/{eventId}: @@ -61167,8 +61167,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" /api/atlas/v2/orgs/{orgId}/federationSettings: @@ -61240,8 +61240,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" /api/atlas/v2/orgs/{orgId}/groups: @@ -61329,8 +61329,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" /api/atlas/v2/orgs/{orgId}/invites: @@ -61410,8 +61410,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" patch: @@ -61491,8 +61491,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61574,8 +61574,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61655,8 +61655,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" get: @@ -61735,8 +61735,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" patch: @@ -61825,8 +61825,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -61960,8 +61960,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: @@ -62046,8 +62046,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: @@ -62133,8 +62133,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/pending: @@ -62204,8 +62204,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: @@ -62277,8 +62277,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: @@ -62347,8 +62347,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" post: @@ -62426,8 +62426,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62501,8 +62501,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" post: @@ -62580,8 +62580,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62657,8 +62657,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" get: @@ -62733,8 +62733,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -62820,8 +62820,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -62901,8 +62901,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: @@ -62987,8 +62987,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63070,8 +63070,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" /api/atlas/v2/orgs/{orgId}/settings: @@ -63143,8 +63143,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" patch: @@ -63224,8 +63224,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63305,8 +63305,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" post: @@ -63391,8 +63391,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63478,8 +63478,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" get: @@ -63562,8 +63562,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" patch: @@ -63657,8 +63657,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -63748,8 +63748,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -63845,8 +63845,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63939,8 +63939,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: @@ -64021,8 +64021,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/users: @@ -64097,8 +64097,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" /api/atlas/v2/orgs/{orgId}/users/{userId}: @@ -64180,8 +64180,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: @@ -64271,8 +64271,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -64336,8 +64336,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" /api/atlas/v2/users: @@ -64420,8 +64420,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -64501,8 +64501,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" /api/atlas/v2/users/byName/{userName}: @@ -64578,8 +64578,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2024-08-05+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" servers: 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 38c6cef2d3..2716a4b33d 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 @@ -37344,7 +37344,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2?pretty=true\"" } ] } @@ -37411,7 +37411,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -37484,7 +37484,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true\"" } ] } @@ -37557,7 +37557,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true\"" } ] } @@ -37621,7 +37621,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}\"" } ] } @@ -37697,7 +37697,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -37780,7 +37780,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}\"" } ] }, @@ -37861,7 +37861,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -37953,7 +37953,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -38026,7 +38026,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -38108,7 +38108,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -38191,7 +38191,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -38275,7 +38275,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -38370,7 +38370,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -38478,7 +38478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -38560,7 +38560,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -38637,7 +38637,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}\"" } ] }, @@ -38718,7 +38718,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -38807,7 +38807,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -38884,7 +38884,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -38954,7 +38954,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -39030,7 +39030,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true\"" } ] }, @@ -39126,7 +39126,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: 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 --include \\\n --header \"Accept: 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 '{ }'" } ] } @@ -39210,7 +39210,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_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 --include \\\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\"" } ] } @@ -39280,7 +39280,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}\"" } ] }, @@ -39348,7 +39348,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true\"" } ] }, @@ -39433,7 +39433,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39519,7 +39519,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39599,7 +39599,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -39697,7 +39697,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -39782,7 +39782,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}\"" } ] }, @@ -39868,7 +39868,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -39955,7 +39955,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40031,7 +40031,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40110,7 +40110,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40190,7 +40190,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}\"" } ] }, @@ -40271,7 +40271,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40363,7 +40363,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -40458,7 +40458,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -40550,7 +40550,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40642,7 +40642,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40724,7 +40724,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -40818,7 +40818,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -40909,7 +40909,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -40989,7 +40989,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41065,7 +41065,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41151,7 +41151,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}\"" } ] }, @@ -41251,7 +41251,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -41342,7 +41342,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41409,7 +41409,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41488,7 +41488,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41555,7 +41555,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41631,7 +41631,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41707,7 +41707,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -41844,7 +41844,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -41927,7 +41927,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -42039,7 +42039,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -42109,7 +42109,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -42201,7 +42201,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -42268,7 +42268,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -42348,7 +42348,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42439,7 +42439,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] } @@ -42518,7 +42518,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -42616,7 +42616,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42701,7 +42701,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] }, @@ -42796,7 +42796,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -42891,7 +42891,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --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 --include \\\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\"" } ] } @@ -42981,7 +42981,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43071,7 +43071,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43164,7 +43164,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}\"" } ] }, @@ -43247,7 +43247,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43345,7 +43345,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43433,7 +43433,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43527,7 +43527,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43612,7 +43612,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -43700,7 +43700,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -43797,7 +43797,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -43891,7 +43891,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -43980,7 +43980,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44059,7 +44059,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -44136,7 +44136,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -44227,7 +44227,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44318,7 +44318,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -44409,7 +44409,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -44500,7 +44500,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -44592,7 +44592,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44674,7 +44674,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -44768,7 +44768,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -44860,7 +44860,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -44963,7 +44963,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45065,7 +45065,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45164,7 +45164,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -45246,7 +45246,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45340,7 +45340,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45422,7 +45422,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45516,7 +45516,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45605,7 +45605,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45703,7 +45703,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -45785,7 +45785,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -45887,7 +45887,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -45989,7 +45989,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -46082,7 +46082,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46183,7 +46183,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -46289,7 +46289,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -46389,7 +46389,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -46484,7 +46484,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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" @@ -46596,7 +46596,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -46680,7 +46680,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -46763,7 +46763,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -46859,7 +46859,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -46961,7 +46961,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -47060,7 +47060,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47245,7 +47245,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47337,7 +47337,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47438,7 +47438,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47557,7 +47557,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -47655,7 +47655,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -47754,7 +47754,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -47867,7 +47867,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -47956,7 +47956,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48043,7 +48043,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48138,7 +48138,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48224,7 +48224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48323,7 +48323,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48399,7 +48399,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48502,7 +48502,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48594,7 +48594,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -48689,7 +48689,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -48774,7 +48774,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -48854,7 +48854,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -48948,7 +48948,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -49042,7 +49042,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49141,7 +49141,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49239,7 +49239,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49356,7 +49356,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -49469,7 +49469,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49580,7 +49580,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -49705,7 +49705,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -49803,7 +49803,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -49909,7 +49909,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -50019,7 +50019,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50099,7 +50099,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -50188,7 +50188,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50291,7 +50291,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50386,7 +50386,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -50476,7 +50476,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] }, @@ -50577,7 +50577,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -50656,7 +50656,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50755,7 +50755,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -50907,7 +50907,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\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 --include \\\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\"" } ] } @@ -51006,7 +51006,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51097,7 +51097,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51224,7 +51224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -51294,7 +51294,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51388,7 +51388,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51476,7 +51476,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51552,7 +51552,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -51641,7 +51641,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}\"" } ] }, @@ -51719,7 +51719,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51820,7 +51820,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -51890,7 +51890,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -51978,7 +51978,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52060,7 +52060,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -52137,7 +52137,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52234,7 +52234,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52317,7 +52317,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52402,7 +52402,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52478,7 +52478,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}\"" } ] }, @@ -52555,7 +52555,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -52652,7 +52652,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -52734,7 +52734,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -52822,7 +52822,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -52911,7 +52911,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53014,7 +53014,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53120,7 +53120,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz\" \\\n --output \"file_name.gz\"" } ] } @@ -53196,7 +53196,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53436,7 +53436,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53528,7 +53528,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -53615,7 +53615,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53722,7 +53722,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -53810,7 +53810,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -53912,7 +53912,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54045,7 +54045,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54175,7 +54175,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54242,7 +54242,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54327,7 +54327,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54406,7 +54406,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -54494,7 +54494,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -54596,7 +54596,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -54685,7 +54685,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54828,7 +54828,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54919,7 +54919,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -54989,7 +54989,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55105,7 +55105,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55224,7 +55224,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55335,7 +55335,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55417,7 +55417,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -55512,7 +55512,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}\"" } ] }, @@ -55605,7 +55605,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -55721,7 +55721,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -55834,7 +55834,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -55914,7 +55914,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -55998,7 +55998,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -56076,7 +56076,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -56154,7 +56154,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -56236,7 +56236,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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" @@ -56329,7 +56329,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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" @@ -56400,7 +56400,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56479,7 +56479,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -56576,7 +56576,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}\"" } ] }, @@ -56674,7 +56674,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -56783,7 +56783,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56871,7 +56871,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -56959,7 +56959,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57045,7 +57045,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57121,7 +57121,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57197,7 +57197,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -57261,7 +57261,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow\"" } ] }, @@ -57326,7 +57326,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -57402,7 +57402,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57466,7 +57466,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57530,7 +57530,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57597,7 +57597,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57664,7 +57664,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable\"" } ] } @@ -57731,7 +57731,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -57859,7 +57859,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -57952,7 +57952,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58041,7 +58041,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58123,7 +58123,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}\"" } ] }, @@ -58203,7 +58203,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58300,7 +58300,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58370,7 +58370,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58449,7 +58449,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58528,7 +58528,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}\"" } ] }, @@ -58608,7 +58608,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -58702,7 +58702,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -58787,7 +58787,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58888,7 +58888,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -58970,7 +58970,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59052,7 +59052,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59153,7 +59153,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59248,7 +59248,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -59341,7 +59341,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -59434,7 +59434,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59516,7 +59516,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59586,7 +59586,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59665,7 +59665,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59746,7 +59746,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -59837,7 +59837,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -59927,7 +59927,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -60015,7 +60015,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60114,7 +60114,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60199,7 +60199,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60293,7 +60293,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -60388,7 +60388,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60502,7 +60502,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60606,7 +60606,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -60711,7 +60711,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -60783,7 +60783,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -60867,7 +60867,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -60949,7 +60949,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -61028,7 +61028,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -61110,7 +61110,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -61193,7 +61193,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61269,7 +61269,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61347,7 +61347,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61423,7 +61423,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61510,7 +61510,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61597,7 +61597,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61723,7 +61723,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61810,7 +61810,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -61894,7 +61894,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62029,7 +62029,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62271,7 +62271,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62367,7 +62367,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62487,7 +62487,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62623,7 +62623,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62750,7 +62750,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -62823,7 +62823,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport\"" } ] }, @@ -62894,7 +62894,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -62977,7 +62977,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -63060,7 +63060,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63142,7 +63142,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63218,7 +63218,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63294,7 +63294,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63376,7 +63376,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63467,7 +63467,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -63564,7 +63564,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -63658,7 +63658,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63749,7 +63749,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63841,7 +63841,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -63920,7 +63920,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64003,7 +64003,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64088,7 +64088,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}\"" } ] }, @@ -64171,7 +64171,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64262,7 +64262,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64338,7 +64338,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64418,7 +64418,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64498,7 +64498,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -64575,7 +64575,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64666,7 +64666,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] }, @@ -64759,7 +64759,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64832,7 +64832,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -64914,7 +64914,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -64987,7 +64987,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65066,7 +65066,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65148,7 +65148,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}\"" } ] }, @@ -65233,7 +65233,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65327,7 +65327,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65436,7 +65436,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" + "source": "curl --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+gzip\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs\" \\\n --output \"file_name.gz\"" } ] } @@ -65521,7 +65521,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65612,7 +65612,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65703,7 +65703,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -65786,7 +65786,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -65889,7 +65889,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -65982,7 +65982,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66070,7 +66070,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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}\"" } ] }, @@ -66159,7 +66159,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66250,7 +66250,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66341,7 +66341,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66432,7 +66432,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -66517,7 +66517,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -66609,7 +66609,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66695,7 +66695,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}\"" } ] }, @@ -66796,7 +66796,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -66863,7 +66863,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -66942,7 +66942,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67006,7 +67006,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509\"" } ] } @@ -67073,7 +67073,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -67154,7 +67154,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67233,7 +67233,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -67327,7 +67327,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] } @@ -67409,7 +67409,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}\"" } ] } @@ -67505,7 +67505,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -67581,7 +67581,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -67663,7 +67663,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -67748,7 +67748,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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": { @@ -67834,7 +67834,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\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 --include \\\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\"" } ] }, @@ -67925,7 +67925,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -68000,7 +68000,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/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 --include \\\n --header \"Accept: application/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 '{ }'" } ] } @@ -68090,7 +68090,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true\"" } ] }, @@ -68175,7 +68175,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68251,7 +68251,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}\"" } ] }, @@ -68325,7 +68325,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true\"" } ] }, @@ -68410,7 +68410,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68490,7 +68490,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68570,7 +68570,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68653,7 +68653,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}\"" } ] }, @@ -68734,7 +68734,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -68829,7 +68829,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -68921,7 +68921,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -69027,7 +69027,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69127,7 +69127,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] }, @@ -69222,7 +69222,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69300,7 +69300,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -69391,7 +69391,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69506,7 +69506,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69597,7 +69597,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69670,7 +69670,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69760,7 +69760,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -69845,7 +69845,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -69927,7 +69927,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] }, @@ -70009,7 +70009,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70091,7 +70091,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}\"" } ] }, @@ -70171,7 +70171,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -70265,7 +70265,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -70423,7 +70423,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70493,7 +70493,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70581,7 +70581,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70662,7 +70662,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"Accept: application/vnd.atlas.2025-01-01+csv\" \\\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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+csv\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true\"" } ] } @@ -70758,7 +70758,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70831,7 +70831,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -70898,7 +70898,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens\"" } ] }, @@ -70977,7 +70977,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71053,7 +71053,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -71132,7 +71132,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71208,7 +71208,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}\"" } ] }, @@ -71285,7 +71285,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -71376,7 +71376,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71461,7 +71461,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -71551,7 +71551,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71636,7 +71636,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -71709,7 +71709,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -71791,7 +71791,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -71877,7 +71877,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -71966,7 +71966,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -72052,7 +72052,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -72141,7 +72141,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}\"" } ] }, @@ -72228,7 +72228,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -72329,7 +72329,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -72427,7 +72427,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] }, @@ -72531,7 +72531,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -72629,7 +72629,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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}\"" } ] } @@ -72711,7 +72711,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -72796,7 +72796,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X DELETE \"https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}\"" } ] } @@ -72892,7 +72892,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${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 --include \\\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 '{ }'" } ] } @@ -72945,7 +72945,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\n --header \"Accept: application/vnd.atlas.2025-01-01+json\" \\\n -X GET \"https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true\"" } ] } @@ -73023,7 +73023,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${PRIVATE_KEY}\" \\\n --digest \\\n --header \"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 --include \\\n --header \"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 '{ }'" } ] } @@ -73100,7 +73100,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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\"" } ] } @@ -73179,7 +73179,7 @@ { "lang": "cURL", "label": "curl (Digest)", - "source": "curl --include --user \"${PUBLIC_KEY}:${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 --include \\\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 68e0695f9e..a199157fbe 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 @@ -30595,8 +30595,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2?pretty=true" /api/atlas/v2/alertConfigs/matchers/fieldNames: @@ -30665,8 +30665,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/alertConfigs/matchers/fieldNames?pretty=true" /api/atlas/v2/clusters: @@ -30736,8 +30736,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/clusters?pretty=true" /api/atlas/v2/eventTypes: @@ -30807,8 +30807,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/eventTypes?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}: @@ -30876,8 +30876,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs: @@ -30950,8 +30950,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs?pretty=true" /api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}: @@ -31032,8 +31032,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}" get: @@ -31113,8 +31113,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}?pretty=true" patch: @@ -31203,8 +31203,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31278,8 +31278,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -31359,8 +31359,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31442,8 +31442,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/connectedOrgConfigs/{orgId}/roleMappings/{id}" get: @@ -31524,8 +31524,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" put: @@ -31615,8 +31615,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -31713,8 +31713,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders?pretty=true" post: @@ -31798,8 +31798,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -31877,8 +31877,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}" get: @@ -31957,8 +31957,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}?pretty=true" patch: @@ -32047,8 +32047,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32126,8 +32126,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/jwks" /api/atlas/v2/federationSettings/{federationSettingsId}/identityProviders/{identityProviderId}/metadata.xml: @@ -32198,8 +32198,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups: @@ -32271,8 +32271,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups?pretty=true" post: @@ -32363,8 +32363,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/groups" \ @@ -32436,8 +32436,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}" get: @@ -32506,8 +32506,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}?pretty=true" patch: @@ -32589,8 +32589,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -32674,8 +32674,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32751,8 +32751,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList?pretty=true" post: @@ -32840,8 +32840,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -32929,8 +32929,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}" get: @@ -33012,8 +33012,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/accessList/{entryValue}?pretty=true" /api/atlas/v2/groups/{groupId}/accessList/{entryValue}/status: @@ -33095,8 +33095,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alertConfigs: @@ -33170,8 +33170,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs?pretty=true" post: @@ -33252,8 +33252,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -33336,8 +33336,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}" get: @@ -33419,8 +33419,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alertConfigs/{alertConfigId}?pretty=true" patch: @@ -33513,8 +33513,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33611,8 +33611,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -33700,8 +33700,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/alerts: @@ -33786,8 +33786,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts?pretty=true" /api/atlas/v2/groups/{groupId}/alerts/{alertId}: @@ -33869,8 +33869,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/alerts/{alertId}?pretty=true" patch: @@ -33962,8 +33962,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34050,8 +34050,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/apiKeys: @@ -34125,8 +34125,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys?pretty=true" post: @@ -34202,8 +34202,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34287,8 +34287,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/apiKeys/{apiUserId}" patch: @@ -34378,8 +34378,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34468,8 +34468,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -34539,8 +34539,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/auditLog?pretty=true" patch: @@ -34618,8 +34618,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34689,8 +34689,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/awsCustomDNS?pretty=true" patch: @@ -34766,8 +34766,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -34840,8 +34840,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets?pretty=true" post: @@ -34960,8 +34960,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35044,8 +35044,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backup/exportBuckets/{exportBucketId}" get: @@ -35146,8 +35146,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/backupCompliancePolicy: @@ -35217,8 +35217,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/backupCompliancePolicy?pretty=true" put: @@ -35305,8 +35305,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35376,8 +35376,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" post: @@ -35456,8 +35456,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -35544,8 +35544,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{cloudProvider}/{roleId}" /api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}: @@ -35622,8 +35622,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess/{roleId}?pretty=true" patch: @@ -35715,8 +35715,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -35795,8 +35795,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters?pretty=true" post: @@ -36008,8 +36008,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36097,8 +36097,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}" get: @@ -36178,8 +36178,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}?pretty=true" patch: @@ -36271,8 +36271,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -36405,8 +36405,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/{clusterView}/collStats/namespaces: @@ -36495,8 +36495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/exports: @@ -36576,8 +36576,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -36667,8 +36667,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -36752,8 +36752,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/restoreJobs: @@ -36833,8 +36833,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -36928,8 +36928,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37019,8 +37019,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -37105,8 +37105,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule: @@ -37184,8 +37184,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/schedule" get: @@ -37261,8 +37261,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -37352,8 +37352,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37437,8 +37437,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -37528,8 +37528,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -37619,8 +37619,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -37707,8 +37707,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -37804,8 +37804,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -37893,8 +37893,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -37981,8 +37981,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/snapshots/shardedClusters: @@ -38061,8 +38061,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/download: @@ -38156,8 +38156,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38251,8 +38251,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -38333,8 +38333,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/restores/{restoreId}: @@ -38422,8 +38422,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots: @@ -38502,8 +38502,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backup/tenant/snapshots/{snapshotId}: @@ -38591,8 +38591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints: @@ -38673,8 +38673,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/backupCheckpoints/{checkpointId}: @@ -38765,8 +38765,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/collStats/pinned: @@ -38846,8 +38846,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -38942,8 +38942,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39040,8 +39040,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39132,8 +39132,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39229,8 +39229,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39328,8 +39328,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -39422,8 +39422,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" x-sunset: "2025-06-01" @@ -39513,8 +39513,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" x-sunset: "2025-06-01" @@ -39617,8 +39617,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -39701,8 +39701,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping: @@ -39782,8 +39782,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/customZoneMapping" post: @@ -39874,8 +39874,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -39969,8 +39969,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/globalWrites/managedNamespaces" post: @@ -40063,8 +40063,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40220,8 +40220,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40306,8 +40306,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -40401,8 +40401,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -40495,8 +40495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/{archiveId}" get: @@ -40588,8 +40588,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -40692,8 +40692,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -40803,8 +40803,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/onlineArchives/queryLogs.gz" \ --output "file_name.gz" @@ -40889,8 +40889,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/outageSimulation" get: @@ -40973,8 +40973,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -41064,8 +41064,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41149,8 +41149,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41243,8 +41243,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41323,8 +41323,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41420,8 +41420,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -41509,8 +41509,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41604,8 +41604,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment: @@ -41686,8 +41686,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/deployment" get: @@ -41765,8 +41765,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -41855,8 +41855,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -41947,8 +41947,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42040,8 +42040,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -42133,8 +42133,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -42238,8 +42238,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/search/indexes/{databaseName}/{collectionName}/{indexName}: @@ -42339,8 +42339,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -42439,8 +42439,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42550,8 +42550,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42644,8 +42644,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -42741,8 +42741,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -42843,8 +42843,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -42927,8 +42927,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -43017,8 +43017,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43111,8 +43111,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}: @@ -43201,8 +43201,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{clusterName}/snapshots/{snapshotId}" get: @@ -43288,8 +43288,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -43384,8 +43384,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -43464,8 +43464,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/{clusterName}:pinFeatureCompatibilityVersion: @@ -43557,8 +43557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43647,8 +43647,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -43763,8 +43763,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/clusters/{hostName}/logs/{logName}.gz" \ --output "file_name.gz" @@ -43848,8 +43848,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/clusters/tenantUpgrade: @@ -43934,8 +43934,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44022,8 +44022,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44096,8 +44096,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/collStats/metrics?pretty=true" /api/atlas/v2/groups/{groupId}/containers: @@ -44181,8 +44181,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers?pretty=true" post: @@ -44266,8 +44266,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44353,8 +44353,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}" get: @@ -44431,8 +44431,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/{containerId}?pretty=true" patch: @@ -44526,8 +44526,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -44600,8 +44600,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/containers/all?pretty=true" /api/atlas/v2/groups/{groupId}/customDBRoles/roles: @@ -44671,8 +44671,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles?pretty=true" post: @@ -44756,8 +44756,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -44837,8 +44837,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/customDBRoles/roles/{roleName}" get: @@ -44913,8 +44913,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -45004,8 +45004,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45086,8 +45086,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation?pretty=true" post: @@ -45169,8 +45169,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -45246,8 +45246,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}" get: @@ -45323,8 +45323,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}?pretty=true" patch: @@ -45414,8 +45414,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45495,8 +45495,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}: @@ -45588,8 +45588,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/limits/{limitName}" get: @@ -45681,8 +45681,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -45786,8 +45786,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -45888,8 +45888,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/dataFederation/{tenantName}/queryLogs.gz" \ --output "file_name.gz" @@ -45961,8 +45961,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers?pretty=true" post: @@ -46137,8 +46137,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46238,8 +46238,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/databaseUsers/{databaseName}/{username}" get: @@ -46334,8 +46334,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -46445,8 +46445,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -46527,8 +46527,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -46627,8 +46627,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -46744,8 +46744,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/dbAccessHistory/processes/{hostname}: @@ -46856,8 +46856,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/encryptionAtRest: @@ -46928,8 +46928,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest?pretty=true" patch: @@ -47023,8 +47023,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47102,8 +47102,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -47187,8 +47187,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -47282,8 +47282,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/encryptionAtRest/{cloudProvider}/privateEndpoints/{endpointId}" get: @@ -47367,8 +47367,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -47493,8 +47493,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events?pretty=true" /api/atlas/v2/groups/{groupId}/events/{eventId}: @@ -47582,8 +47582,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/events/{eventId}?pretty=true" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics: @@ -47653,8 +47653,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/{indexName}/measurements: @@ -47754,8 +47754,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/indexes/{databaseName}/{collectionName}/measurements: @@ -47854,8 +47854,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/hosts/{processId}/fts/metrics/measurements: @@ -47953,8 +47953,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/integrations: @@ -48029,8 +48029,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations?pretty=true" /api/atlas/v2/groups/{groupId}/integrations/{integrationType}: @@ -48120,8 +48120,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}" get: @@ -48210,8 +48210,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/integrations/{integrationType}?pretty=true" post: @@ -48314,8 +48314,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48418,8 +48418,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48498,8 +48498,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites?pretty=true" x-sunset: "2024-10-04" @@ -48581,8 +48581,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48662,8 +48662,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -48743,8 +48743,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}" x-sunset: "2024-10-04" @@ -48824,8 +48824,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/invites/{invitationId}?pretty=true" x-sunset: "2024-10-04" @@ -48915,8 +48915,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -48989,8 +48989,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/ipAddresses?pretty=true" /api/atlas/v2/groups/{groupId}/limits: @@ -49066,8 +49066,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits?pretty=true" /api/atlas/v2/groups/{groupId}/limits/{limitName}: @@ -49175,8 +49175,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}" get: @@ -49285,8 +49285,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/limits/{limitName}?pretty=true" patch: @@ -49407,8 +49407,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -49501,8 +49501,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49577,8 +49577,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}?pretty=true" /api/atlas/v2/groups/{groupId}/liveMigrations/{liveMigrationId}/cutover: @@ -49653,8 +49653,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49740,8 +49740,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -49826,8 +49826,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/maintenanceWindow: @@ -49894,8 +49894,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow" get: @@ -49962,8 +49962,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/maintenanceWindow?pretty=true" patch: @@ -50040,8 +50040,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50112,8 +50112,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50184,8 +50184,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50255,8 +50255,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs?pretty=true" /api/atlas/v2/groups/{groupId}/managedSlowMs/disable: @@ -50324,8 +50324,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/managedSlowMs/disable" /api/atlas/v2/groups/{groupId}/managedSlowMs/enable: @@ -50395,8 +50395,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50507,8 +50507,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/mongoDBVersions?pretty=true" /api/atlas/v2/groups/{groupId}/peers: @@ -50591,8 +50591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers?pretty=true" post: @@ -50677,8 +50677,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -50759,8 +50759,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}" get: @@ -50838,8 +50838,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/peers/{peerId}?pretty=true" patch: @@ -50930,8 +50930,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -51004,8 +51004,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines?pretty=true" post: @@ -51084,8 +51084,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51165,8 +51165,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}" get: @@ -51244,8 +51244,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}?pretty=true" patch: @@ -51335,8 +51335,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -51419,8 +51419,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/availableSnapshots: @@ -51509,8 +51509,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/pause: @@ -51591,8 +51591,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51675,8 +51675,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -51767,8 +51767,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}: @@ -51857,8 +51857,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/runs/{pipelineRunId}" get: @@ -51946,8 +51946,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pipelines/{pipelineName}/trigger: @@ -52035,8 +52035,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52119,8 +52119,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}: @@ -52208,8 +52208,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}" get: @@ -52298,8 +52298,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/{cloudProvider}/endpointService/{endpointServiceId}/endpoint: @@ -52402,8 +52402,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52500,8 +52500,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -52597,8 +52597,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/privateEndpoint/endpointService: @@ -52678,8 +52678,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52751,8 +52751,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateEndpoint/regionalMode?pretty=true" patch: @@ -52830,8 +52830,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -52912,8 +52912,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -53004,8 +53004,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53093,8 +53093,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" get: @@ -53179,8 +53179,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -53274,8 +53274,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -53349,8 +53349,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateIpMode?pretty=true" patch: @@ -53432,8 +53432,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53510,8 +53510,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds?pretty=true" post: @@ -53608,8 +53608,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -53690,8 +53690,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/privateNetworkSettings/endpointIds/{endpointId}" get: @@ -53771,8 +53771,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes: @@ -53843,8 +53843,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}: @@ -53920,8 +53920,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/processes/{processId}?pretty=true" /api/atlas/v2/groups/{groupId}/processes/{processId}/{databaseName}/{collectionName}/collStats/measurements: @@ -54032,8 +54032,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/collStats/namespaces: @@ -54104,8 +54104,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases: @@ -54184,8 +54184,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}: @@ -54267,8 +54267,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/databases/{databaseName}/measurements: @@ -54376,8 +54376,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks: @@ -54456,8 +54456,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}: @@ -54538,8 +54538,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/disks/{partitionName}/measurements: @@ -54663,8 +54663,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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: @@ -54899,8 +54899,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/namespaces: @@ -54996,8 +54996,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/slowQueryLogs: @@ -55110,8 +55110,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/processes/{processId}/performanceAdvisor/suggestedIndexes: @@ -55231,8 +55231,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/pushBasedLogExport: @@ -55304,8 +55304,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport" get: @@ -55376,8 +55376,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/pushBasedLogExport?pretty=true" patch: @@ -55458,8 +55458,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55542,8 +55542,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55627,8 +55627,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -55706,8 +55706,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/sampleDatasetLoad/{sampleDatasetId}?pretty=true" /api/atlas/v2/groups/{groupId}/serverless: @@ -55778,8 +55778,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless?pretty=true" post: @@ -55859,8 +55859,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -55944,8 +55944,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -56036,8 +56036,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56127,8 +56127,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots: @@ -56210,8 +56210,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/backup/snapshots/{snapshotId}: @@ -56299,8 +56299,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/serverless/{clusterName}/performanceAdvisor/autoIndexing: @@ -56377,8 +56377,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -56461,8 +56461,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56545,8 +56545,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}" get: @@ -56626,8 +56626,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serverless/{name}?pretty=true" patch: @@ -56714,8 +56714,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -56789,8 +56789,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts?pretty=true" post: @@ -56869,8 +56869,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -56949,8 +56949,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}" get: @@ -57025,8 +57025,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -57112,8 +57112,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57203,8 +57203,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57278,8 +57278,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/settings?pretty=true" patch: @@ -57359,8 +57359,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57432,8 +57432,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams?pretty=true" post: @@ -57511,8 +57511,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -57592,8 +57592,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}" get: @@ -57674,8 +57674,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}?pretty=true" patch: @@ -57763,8 +57763,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -57866,8 +57866,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+gzip" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/auditLogs" \ --output "file_name.gz" @@ -57946,8 +57946,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -58033,8 +58033,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58120,8 +58120,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/connections/{connectionName}" get: @@ -58201,8 +58201,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" patch: @@ -58296,8 +58296,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -58386,8 +58386,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58471,8 +58471,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}" get: @@ -58555,8 +58555,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/streams/{tenantName}/processor/{processorName}:start: @@ -58642,8 +58642,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58731,8 +58731,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -58815,8 +58815,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/teams: @@ -58893,8 +58893,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams?pretty=true" post: @@ -58981,8 +58981,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59067,8 +59067,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/teams/{teamId}" patch: @@ -59162,8 +59162,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -59233,8 +59233,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity?pretty=true" patch: @@ -59315,8 +59315,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59388,8 +59388,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/customerX509" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping: @@ -59457,8 +59457,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/userSecurity/ldap/userToDNMapping" /api/atlas/v2/groups/{groupId}/userSecurity/ldap/verify: @@ -59537,8 +59537,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59617,8 +59617,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/groups/{groupId}/users: @@ -59701,8 +59701,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users?pretty=true" /api/atlas/v2/groups/{groupId}/users/{userId}: @@ -59781,8 +59781,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/users/{userId}" /api/atlas/v2/groups/{groupId}/users/{userId}/roles: @@ -59872,8 +59872,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -59946,8 +59946,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss?pretty=true" post: @@ -60027,8 +60027,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60111,8 +60111,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}" x-xgen-changelog: @@ -60194,8 +60194,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/uss/{name}?pretty=true" patch: @@ -60282,8 +60282,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -60361,8 +60361,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -60445,8 +60445,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/byName/{groupName}?pretty=true" /api/atlas/v2/orgs: @@ -60527,8 +60527,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs?pretty=true" post: @@ -60611,8 +60611,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/orgs" \ @@ -60694,8 +60694,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}" get: @@ -60768,8 +60768,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}?pretty=true" patch: @@ -60851,8 +60851,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -60928,8 +60928,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys?pretty=true" post: @@ -61008,8 +61008,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61091,8 +61091,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}" get: @@ -61171,8 +61171,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}?pretty=true" patch: @@ -61262,8 +61262,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -61348,8 +61348,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -61443,8 +61443,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61538,8 +61538,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/apiKeys/{apiUserId}/accessList/{ipAddress}" get: @@ -61628,8 +61628,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/billing/costExplorer/usage: @@ -61707,8 +61707,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -61796,8 +61796,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/events: @@ -61900,8 +61900,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events?pretty=true" /api/atlas/v2/orgs/{orgId}/events/{eventId}: @@ -61989,8 +61989,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/events/{eventId}?pretty=true" /api/atlas/v2/orgs/{orgId}/federationSettings: @@ -62062,8 +62062,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/federationSettings?pretty=true" /api/atlas/v2/orgs/{orgId}/groups: @@ -62151,8 +62151,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/groups?pretty=true" /api/atlas/v2/orgs/{orgId}/invites: @@ -62232,8 +62232,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites?pretty=true" patch: @@ -62313,8 +62313,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62396,8 +62396,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -62477,8 +62477,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}" get: @@ -62557,8 +62557,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invites/{invitationId}?pretty=true" patch: @@ -62647,8 +62647,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -62782,8 +62782,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}: @@ -62868,8 +62868,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv: @@ -62955,8 +62955,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+csv" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/csv?pretty=true" /api/atlas/v2/orgs/{orgId}/invoices/{invoiceId}/lineItems/:search: @@ -63043,8 +63043,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/invoices/pending: @@ -63114,8 +63114,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/invoices/pending?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects: @@ -63187,8 +63187,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/availableProjects?pretty=true" /api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens: @@ -63257,8 +63257,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/liveMigrations/linkTokens" post: @@ -63336,8 +63336,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63411,8 +63411,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts?pretty=true" post: @@ -63490,8 +63490,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63567,8 +63567,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}" get: @@ -63643,8 +63643,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}?pretty=true" patch: @@ -63730,8 +63730,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -63811,8 +63811,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets: @@ -63897,8 +63897,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -63980,8 +63980,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/serviceAccounts/{serviceAccountId}/secrets/{secretId}" /api/atlas/v2/orgs/{orgId}/settings: @@ -64053,8 +64053,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/settings?pretty=true" patch: @@ -64134,8 +64134,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -64215,8 +64215,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams?pretty=true" post: @@ -64301,8 +64301,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -64388,8 +64388,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}" get: @@ -64472,8 +64472,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}?pretty=true" patch: @@ -64567,8 +64567,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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}" \ @@ -64658,8 +64658,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" post: @@ -64755,8 +64755,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -64849,8 +64849,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/teams/{teamId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/teams/byName/{teamName}: @@ -64931,8 +64931,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" /api/atlas/v2/orgs/{orgId}/users: @@ -65007,8 +65007,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users?pretty=true" /api/atlas/v2/orgs/{orgId}/users/{userId}: @@ -65090,8 +65090,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X DELETE "https://cloud.mongodb.com/api/atlas/v2/orgs/{orgId}/users/{userId}" /api/atlas/v2/orgs/{orgId}/users/{userId}/roles: @@ -65181,8 +65181,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --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" \ @@ -65246,8 +65246,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/unauth/controlPlaneIPAddresses?pretty=true" /api/atlas/v2/users: @@ -65330,8 +65330,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ --header "Content-Type: application/json" \ -X POST "https://cloud.mongodb.com/api/atlas/v2/users" \ @@ -65411,8 +65411,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/{userId}?pretty=true" /api/atlas/v2/users/byName/{userName}: @@ -65488,8 +65488,8 @@ paths: - label: curl (Digest) lang: cURL source: |- - curl --include --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ - --digest \ + curl --user "${PUBLIC_KEY}:${PRIVATE_KEY}" \ + --digest --include \ --header "Accept: application/vnd.atlas.2025-01-01+json" \ -X GET "https://cloud.mongodb.com/api/atlas/v2/users/byName/{userName}?pretty=true" servers: