diff --git a/tools/cli/go.mod b/tools/cli/go.mod index b125e5f117..23de362c99 100644 --- a/tools/cli/go.mod +++ b/tools/cli/go.mod @@ -6,6 +6,7 @@ toolchain go1.24.0 require ( github.com/getkin/kin-openapi v0.132.0 + github.com/iancoleman/strcase v0.3.0 github.com/oasdiff/oasdiff v1.11.4 github.com/spf13/afero v1.14.0 github.com/spf13/cobra v1.9.1 diff --git a/tools/cli/go.sum b/tools/cli/go.sum index 6dec9344fc..f2bcafcabc 100644 --- a/tools/cli/go.sum +++ b/tools/cli/go.sum @@ -15,6 +15,8 @@ github.com/go-test/deep v1.0.8 h1:TDsG77qcSprGbC6vTN8OuXp5g+J+b5Pcguhf7Zt61VM= github.com/go-test/deep v1.0.8/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= +github.com/iancoleman/strcase v0.3.0 h1:nTXanmYxhfFAMjZL34Ov6gkzEsSJZ5DbhxWjvSASxEI= +github.com/iancoleman/strcase v0.3.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= diff --git a/tools/cli/internal/openapi/filter/code_sample.go b/tools/cli/internal/openapi/filter/code_sample.go index 9d13226836..358bd257d0 100644 --- a/tools/cli/internal/openapi/filter/code_sample.go +++ b/tools/cli/internal/openapi/filter/code_sample.go @@ -24,6 +24,7 @@ import ( "time" "github.com/getkin/kin-openapi/openapi3" + "github.com/iancoleman/strcase" "github.com/mongodb/openapi/tools/cli/internal/apiversion" "golang.org/x/text/cases" "golang.org/x/text/language" @@ -147,10 +148,12 @@ func apiVersion(version *apiversion.APIVersion) string { } func newAtlasCliCodeSamplesForOperation(op *openapi3.Operation) codeSample { + tag := strcase.ToLowerCamel(op.Tags[0]) + operationID := strcase.ToLowerCamel(op.OperationID) return codeSample{ Lang: "cURL", Label: "Atlas CLI", - Source: "atlas api " + op.OperationID + " --help", + Source: "atlas api " + tag + " " + operationID + " --help", } } diff --git a/tools/cli/internal/openapi/filter/code_sample_test.go b/tools/cli/internal/openapi/filter/code_sample_test.go index a2c620a377..2485999573 100644 --- a/tools/cli/internal/openapi/filter/code_sample_test.go +++ b/tools/cli/internal/openapi/filter/code_sample_test.go @@ -81,7 +81,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "Atlas CLI", - Source: "atlas api testOperationID --help", + Source: "atlas api testTag testOperationId --help", }, { Lang: "go", @@ -127,6 +127,7 @@ func TestCodeSampleFilter(t *testing.T) { Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", + Tags: []string{"TestTag"}, Responses: openapi3.NewResponses(openapi3.WithName("200", &openapi3.Response{ Content: openapi3.Content{ "application/vnd.atlas.preview+json": { @@ -150,6 +151,7 @@ func TestCodeSampleFilter(t *testing.T) { Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", + Tags: []string{"TestTag"}, Responses: openapi3.NewResponses(openapi3.WithName("200", &openapi3.Response{ Content: openapi3.Content{ "application/vnd.atlas.preview+json": { @@ -168,7 +170,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "Atlas CLI", - Source: "atlas api testOperationID --help", + Source: "atlas api testTag testOperationId --help", }, { Lang: "cURL", @@ -196,6 +198,7 @@ func TestCodeSampleFilter(t *testing.T) { Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", + Tags: []string{"TestTag"}, Responses: openapi3.NewResponses(openapi3.WithName("200", &openapi3.Response{ Content: openapi3.Content{ "application/vnd.atlas.2025-01-01.upcoming+json": { @@ -219,6 +222,7 @@ func TestCodeSampleFilter(t *testing.T) { Get: &openapi3.Operation{ OperationID: "testOperationID", Summary: "testSummary", + Tags: []string{"TestTag"}, Responses: openapi3.NewResponses(openapi3.WithName("200", &openapi3.Response{ Content: openapi3.Content{ "application/vnd.atlas.2025-01-01.upcoming+json": { @@ -237,7 +241,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "Atlas CLI", - Source: "atlas api testOperationID --help", + Source: "atlas api testTag testOperationId --help", }, { Lang: "cURL", @@ -308,7 +312,7 @@ func TestCodeSampleFilter(t *testing.T) { { Lang: "cURL", Label: "Atlas CLI", - Source: "atlas api testOperationID --help", + Source: "atlas api testTag testOperationId --help", }, { Lang: "go", 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 9e6f0caf13..982f648424 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 @@ -34434,7 +34434,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "source": "atlas api root getSystemStatus --help" }, { "lang": "go", @@ -34501,7 +34501,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "source": "atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help" }, { "lang": "go", @@ -34574,7 +34574,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "source": "atlas api clusters listClustersForAllProjects --help" }, { "lang": "go", @@ -34647,7 +34647,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "source": "atlas api events listEventTypes --help" }, { "lang": "go", @@ -34711,7 +34711,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "source": "atlas api federatedAuthentication deleteFederationApp --help" }, { "lang": "go", @@ -34787,7 +34787,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "source": "atlas api federatedAuthentication listConnectedOrgConfigs --help" }, { "lang": "go", @@ -34870,7 +34870,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication removeConnectedOrgConfig --help" }, { "lang": "go", @@ -34951,7 +34951,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication getConnectedOrgConfig --help" }, { "lang": "go", @@ -35043,7 +35043,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication updateConnectedOrgConfig --help" }, { "lang": "go", @@ -35116,7 +35116,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "source": "atlas api federatedAuthentication listRoleMappings --help" }, { "lang": "go", @@ -35198,7 +35198,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "source": "atlas api federatedAuthentication createRoleMapping --help" }, { "lang": "go", @@ -35281,7 +35281,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "source": "atlas api federatedAuthentication deleteRoleMapping --help" }, { "lang": "go", @@ -35365,7 +35365,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "source": "atlas api federatedAuthentication getRoleMapping --help" }, { "lang": "go", @@ -35460,7 +35460,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "source": "atlas api federatedAuthentication updateRoleMapping --help" }, { "lang": "go", @@ -35568,7 +35568,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "source": "atlas api federatedAuthentication listIdentityProviders --help" }, { "lang": "go", @@ -35652,7 +35652,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "source": "atlas api federatedAuthentication getIdentityProvider --help" }, { "lang": "go", @@ -35743,7 +35743,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "source": "atlas api federatedAuthentication updateIdentityProvider --help" }, { "lang": "go", @@ -35814,7 +35814,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "source": "atlas api federatedAuthentication getIdentityProviderMetadata --help" }, { "lang": "go", @@ -35890,7 +35890,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "source": "atlas api projects listProjects --help" }, { "lang": "go", @@ -35986,7 +35986,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProject --help" + "source": "atlas api projects createProject --help" }, { "lang": "go", @@ -36070,7 +36070,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "source": "atlas api projects getProjectByName --help" }, { "lang": "go", @@ -36140,7 +36140,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "source": "atlas api projects deleteProject --help" }, { "lang": "go", @@ -36208,7 +36208,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProject --help" + "source": "atlas api projects getProject --help" }, { "lang": "go", @@ -36293,7 +36293,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "source": "atlas api projects updateProject --help" }, { "lang": "go", @@ -36373,7 +36373,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "source": "atlas api projectIpAccessList listProjectIpAccessLists --help" }, { "lang": "go", @@ -36471,7 +36471,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "source": "atlas api projectIpAccessList createProjectIpAccessList --help" }, { "lang": "go", @@ -36556,7 +36556,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "source": "atlas api projectIpAccessList deleteProjectIpAccessList --help" }, { "lang": "go", @@ -36642,7 +36642,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "source": "atlas api projectIpAccessList getProjectIpList --help" }, { "lang": "go", @@ -36729,7 +36729,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "source": "atlas api projectIpAccessList getProjectIpAccessListStatus --help" }, { "lang": "go", @@ -36805,7 +36805,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "source": "atlas api alertConfigurations listAlertConfigurations --help" }, { "lang": "go", @@ -36884,7 +36884,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "source": "atlas api alertConfigurations createAlertConfiguration --help" }, { "lang": "go", @@ -36964,7 +36964,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "source": "atlas api alertConfigurations deleteAlertConfiguration --help" }, { "lang": "go", @@ -37045,7 +37045,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "source": "atlas api alertConfigurations getAlertConfiguration --help" }, { "lang": "go", @@ -37137,7 +37137,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "source": "atlas api alertConfigurations toggleAlertConfiguration --help" }, { "lang": "go", @@ -37232,7 +37232,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "source": "atlas api alertConfigurations updateAlertConfiguration --help" }, { "lang": "go", @@ -37324,7 +37324,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "source": "atlas api alerts listAlertsByAlertConfigurationId --help" }, { "lang": "go", @@ -37416,7 +37416,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "source": "atlas api alerts listAlerts --help" }, { "lang": "go", @@ -37498,7 +37498,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "source": "atlas api alerts getAlert --help" }, { "lang": "go", @@ -37593,7 +37593,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "source": "atlas api alerts acknowledgeAlert --help" }, { "lang": "go", @@ -37685,7 +37685,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "source": "atlas api alertConfigurations listAlertConfigurationsByAlertId --help" }, { "lang": "go", @@ -37765,7 +37765,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "source": "atlas api programmaticApiKeys listProjectApiKeys --help" }, { "lang": "go", @@ -37841,7 +37841,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "source": "atlas api programmaticApiKeys createProjectApiKey --help" }, { "lang": "go", @@ -37927,7 +37927,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "source": "atlas api programmaticApiKeys removeProjectApiKey --help" }, { "lang": "go", @@ -38027,7 +38027,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "source": "atlas api programmaticApiKeys updateApiKeyRoles --help" }, { "lang": "go", @@ -38118,7 +38118,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "source": "atlas api programmaticApiKeys addProjectApiKey --help" }, { "lang": "go", @@ -38185,7 +38185,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "source": "atlas api auditing getAuditingConfiguration --help" }, { "lang": "go", @@ -38264,7 +38264,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "source": "atlas api auditing updateAuditingConfiguration --help" }, { "lang": "go", @@ -38331,7 +38331,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "source": "atlas api awsClustersDns getAwscustomDns --help" }, { "lang": "go", @@ -38407,7 +38407,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "source": "atlas api awsClustersDns toggleAwscustomDns --help" }, { "lang": "go", @@ -38484,7 +38484,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "source": "atlas api cloudBackups listExportBuckets --help" }, { "lang": "go", @@ -38570,7 +38570,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "source": "atlas api cloudBackups createExportBucket --help" }, { "lang": "go", @@ -38654,7 +38654,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "source": "atlas api cloudBackups deleteExportBucket --help" }, { "lang": "go", @@ -38733,7 +38733,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "source": "atlas api cloudBackups getExportBucket --help" }, { "lang": "go", @@ -38805,7 +38805,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "source": "atlas api cloudBackups getDataProtectionSettings --help" }, { "lang": "go", @@ -38900,7 +38900,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "source": "atlas api cloudBackups updateDataProtectionSettings --help" }, { "lang": "go", @@ -38968,7 +38968,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "source": "atlas api cloudProviderAccess listCloudProviderAccessRoles --help" }, { "lang": "go", @@ -39048,7 +39048,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess createCloudProviderAccessRole --help" }, { "lang": "go", @@ -39139,7 +39139,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -39218,7 +39218,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess getCloudProviderAccessRole --help" }, { "lang": "go", @@ -39316,7 +39316,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -39402,7 +39402,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "source": "atlas api clusters listClusters --help" }, { "lang": "go", @@ -39492,7 +39492,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "source": "atlas api clusters createCluster --help" }, { "lang": "go", @@ -39588,7 +39588,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "source": "atlas api clusters listCloudProviderRegions --help" }, { "lang": "go", @@ -39678,7 +39678,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "source": "atlas api clusters upgradeSharedCluster --help" }, { "lang": "go", @@ -39768,7 +39768,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "source": "atlas api clusters upgradeSharedClusterToServerless --help" }, { "lang": "go", @@ -39862,7 +39862,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "source": "atlas api clusters deleteCluster --help" }, { "lang": "go", @@ -39947,7 +39947,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "source": "atlas api clusters getCluster --help" }, { "lang": "go", @@ -40046,7 +40046,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "source": "atlas api clusters updateCluster --help" }, { "lang": "go", @@ -40135,7 +40135,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "source": "atlas api cloudBackups listBackupExportJobs --help" }, { "lang": "go", @@ -40229,7 +40229,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "source": "atlas api cloudBackups createBackupExportJob --help" }, { "lang": "go", @@ -40314,7 +40314,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "source": "atlas api cloudBackups getBackupExportJob --help" }, { "lang": "go", @@ -40402,7 +40402,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "source": "atlas api cloudBackups listBackupRestoreJobs --help" }, { "lang": "go", @@ -40499,7 +40499,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "source": "atlas api cloudBackups createBackupRestoreJob --help" }, { "lang": "go", @@ -40593,7 +40593,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "source": "atlas api cloudBackups cancelBackupRestoreJob --help" }, { "lang": "go", @@ -40682,7 +40682,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "source": "atlas api cloudBackups getBackupRestoreJob --help" }, { "lang": "go", @@ -40762,7 +40762,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "source": "atlas api cloudBackups deleteAllBackupSchedules --help" }, { "lang": "go", @@ -40841,7 +40841,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "source": "atlas api cloudBackups getBackupSchedule --help" }, { "lang": "go", @@ -40934,7 +40934,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "source": "atlas api cloudBackups updateBackupSchedule --help" }, { "lang": "go", @@ -41026,7 +41026,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "source": "atlas api cloudBackups listReplicaSetBackups --help" }, { "lang": "go", @@ -41117,7 +41117,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "source": "atlas api cloudBackups takeSnapshot --help" }, { "lang": "go", @@ -41208,7 +41208,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "source": "atlas api cloudBackups deleteShardedClusterBackup --help" }, { "lang": "go", @@ -41300,7 +41300,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "source": "atlas api cloudBackups getShardedClusterBackup --help" }, { "lang": "go", @@ -41382,7 +41382,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "source": "atlas api cloudBackups listShardedClusterBackups --help" }, { "lang": "go", @@ -41476,7 +41476,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "source": "atlas api cloudBackups deleteReplicaSetBackup --help" }, { "lang": "go", @@ -41568,7 +41568,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "source": "atlas api cloudBackups getReplicaSetBackup --help" }, { "lang": "go", @@ -41671,7 +41671,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "source": "atlas api cloudBackups updateSnapshotRetention --help" }, { "lang": "go", @@ -41773,7 +41773,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots downloadSharedClusterBackup --help" }, { "lang": "go", @@ -41872,7 +41872,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -41954,7 +41954,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "source": "atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help" }, { "lang": "go", @@ -42048,7 +42048,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -42130,7 +42130,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "source": "atlas api sharedTierSnapshots listSharedClusterBackups --help" }, { "lang": "go", @@ -42224,7 +42224,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots getSharedClusterBackup --help" }, { "lang": "go", @@ -42313,7 +42313,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "source": "atlas api legacyBackup listLegacyBackupCheckpoints --help" }, { "lang": "go", @@ -42411,7 +42411,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "source": "atlas api legacyBackup getLegacyBackupCheckpoint --help" }, { "lang": "go", @@ -42512,7 +42512,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch createAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -42618,7 +42618,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesDeprecated --help" }, { "lang": "go", @@ -42718,7 +42718,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -42813,7 +42813,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch getAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -42925,7 +42925,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43010,7 +43010,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "source": "atlas api globalClusters getManagedNamespace --help" }, { "lang": "go", @@ -43095,7 +43095,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "source": "atlas api globalClusters deleteAllCustomZoneMappings --help" }, { "lang": "go", @@ -43192,7 +43192,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "source": "atlas api globalClusters createCustomZoneMapping --help" }, { "lang": "go", @@ -43296,7 +43296,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "source": "atlas api globalClusters deleteManagedNamespace --help" }, { "lang": "go", @@ -43396,7 +43396,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "source": "atlas api globalClusters createManagedNamespace --help" }, { "lang": "go", @@ -43582,7 +43582,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "source": "atlas api rollingIndex createRollingIndex --help" }, { "lang": "go", @@ -43674,7 +43674,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "source": "atlas api onlineArchive listOnlineArchives --help" }, { "lang": "go", @@ -43775,7 +43775,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "source": "atlas api onlineArchive createOnlineArchive --help" }, { "lang": "go", @@ -43894,7 +43894,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "source": "atlas api onlineArchive downloadOnlineArchiveQueryLogs --help" }, { "lang": "go", @@ -43992,7 +43992,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "source": "atlas api onlineArchive deleteOnlineArchive --help" }, { "lang": "go", @@ -44091,7 +44091,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "source": "atlas api onlineArchive getOnlineArchive --help" }, { "lang": "go", @@ -44204,7 +44204,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "source": "atlas api onlineArchive updateOnlineArchive --help" }, { "lang": "go", @@ -44293,7 +44293,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "source": "atlas api clusterOutageSimulation endOutageSimulation --help" }, { "lang": "go", @@ -44380,7 +44380,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "source": "atlas api clusterOutageSimulation getOutageSimulation --help" }, { "lang": "go", @@ -44475,7 +44475,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "source": "atlas api clusterOutageSimulation startOutageSimulation --help" }, { "lang": "go", @@ -44562,7 +44562,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "source": "atlas api clusters getClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -44663,7 +44663,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "source": "atlas api clusters updateClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -44741,7 +44741,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "source": "atlas api clusters testFailover --help" }, { "lang": "go", @@ -44845,7 +44845,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "source": "atlas api legacyBackup listLegacyBackupRestoreJobs --help" }, { "lang": "go", @@ -44937,7 +44937,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup createLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -45032,7 +45032,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup getLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -45115,7 +45115,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "source": "atlas api atlasSearch deleteAtlasSearchDeployment --help" }, { "lang": "go", @@ -45197,7 +45197,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "source": "atlas api atlasSearch getAtlasSearchDeployment --help" }, { "lang": "go", @@ -45293,7 +45293,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "source": "atlas api atlasSearch updateAtlasSearchDeployment --help" }, { "lang": "go", @@ -45389,7 +45389,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "source": "atlas api atlasSearch createAtlasSearchDeployment --help" }, { "lang": "go", @@ -45470,7 +45470,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup getLegacySnapshotSchedule --help" }, { "lang": "go", @@ -45559,7 +45559,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup updateLegacySnapshotSchedule --help" }, { "lang": "go", @@ -45662,7 +45662,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "source": "atlas api legacyBackup listLegacySnapshots --help" }, { "lang": "go", @@ -45757,7 +45757,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "source": "atlas api legacyBackup deleteLegacySnapshot --help" }, { "lang": "go", @@ -45847,7 +45847,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "source": "atlas api legacyBackup getLegacySnapshot --help" }, { "lang": "go", @@ -45948,7 +45948,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "source": "atlas api legacyBackup updateLegacySnapshotRetention --help" }, { "lang": "go", @@ -46027,7 +46027,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "source": "atlas api clusters getClusterStatus --help" }, { "lang": "go", @@ -46155,7 +46155,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "source": "atlas api monitoringAndLogs getHostLogs --help" }, { "lang": "go", @@ -46250,7 +46250,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "source": "atlas api networkPeering listPeeringContainerByCloudProvider --help" }, { "lang": "go", @@ -46338,7 +46338,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "source": "atlas api networkPeering createPeeringContainer --help" }, { "lang": "go", @@ -46414,7 +46414,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "source": "atlas api networkPeering listPeeringContainers --help" }, { "lang": "go", @@ -46503,7 +46503,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "source": "atlas api networkPeering deletePeeringContainer --help" }, { "lang": "go", @@ -46581,7 +46581,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "source": "atlas api networkPeering getPeeringContainer --help" }, { "lang": "go", @@ -46682,7 +46682,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "source": "atlas api networkPeering updatePeeringContainer --help" }, { "lang": "go", @@ -46752,7 +46752,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "source": "atlas api customDatabaseRoles listCustomDatabaseRoles --help" }, { "lang": "go", @@ -46840,7 +46840,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles createCustomDatabaseRole --help" }, { "lang": "go", @@ -46922,7 +46922,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles deleteCustomDatabaseRole --help" }, { "lang": "go", @@ -46999,7 +46999,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles getCustomDatabaseRole --help" }, { "lang": "go", @@ -47096,7 +47096,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles updateCustomDatabaseRole --help" }, { "lang": "go", @@ -47179,7 +47179,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "source": "atlas api dataFederation listFederatedDatabases --help" }, { "lang": "go", @@ -47264,7 +47264,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "source": "atlas api dataFederation createFederatedDatabase --help" }, { "lang": "go", @@ -47340,7 +47340,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "source": "atlas api dataFederation deleteFederatedDatabase --help" }, { "lang": "go", @@ -47417,7 +47417,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "source": "atlas api dataFederation getFederatedDatabase --help" }, { "lang": "go", @@ -47514,7 +47514,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "source": "atlas api dataFederation updateFederatedDatabase --help" }, { "lang": "go", @@ -47596,7 +47596,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimits --help" }, { "lang": "go", @@ -47684,7 +47684,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "source": "atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "go", @@ -47773,7 +47773,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimit --help" }, { "lang": "go", @@ -47876,7 +47876,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "source": "atlas api dataFederation createOneDataFederationQueryLimit --help" }, { "lang": "go", @@ -47982,7 +47982,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "source": "atlas api dataFederation downloadFederatedDatabaseQueryLogs --help" }, { "lang": "go", @@ -48058,7 +48058,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "source": "atlas api databaseUsers listDatabaseUsers --help" }, { "lang": "go", @@ -48298,7 +48298,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "source": "atlas api databaseUsers createDatabaseUser --help" }, { "lang": "go", @@ -48390,7 +48390,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "source": "atlas api databaseUsers deleteDatabaseUser --help" }, { "lang": "go", @@ -48477,7 +48477,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "source": "atlas api databaseUsers getDatabaseUser --help" }, { "lang": "go", @@ -48584,7 +48584,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "source": "atlas api databaseUsers updateDatabaseUser --help" }, { "lang": "go", @@ -48672,7 +48672,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "source": "atlas api x509Authentication listDatabaseUserCertificates --help" }, { "lang": "go", @@ -48774,7 +48774,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "source": "atlas api x509Authentication createDatabaseUserCertificate --help" }, { "lang": "go", @@ -48907,7 +48907,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "source": "atlas api accessTracking listAccessLogsByClusterName --help" }, { "lang": "go", @@ -49037,7 +49037,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "source": "atlas api accessTracking listAccessLogsByHostname --help" }, { "lang": "go", @@ -49104,7 +49104,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help" }, { "lang": "go", @@ -49189,7 +49189,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help" }, { "lang": "go", @@ -49268,7 +49268,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "go", @@ -49356,7 +49356,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -49458,7 +49458,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "go", @@ -49547,7 +49547,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -49690,7 +49690,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "source": "atlas api events listProjectEvents --help" }, { "lang": "go", @@ -49781,7 +49781,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "source": "atlas api events getProjectEvent --help" }, { "lang": "go", @@ -49851,7 +49851,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "source": "atlas api monitoringAndLogs listMetricTypes --help" }, { "lang": "go", @@ -49967,7 +49967,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "source": "atlas api monitoringAndLogs listIndexMetrics --help" }, { "lang": "go", @@ -50086,7 +50086,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "source": "atlas api monitoringAndLogs getIndexMetrics --help" }, { "lang": "go", @@ -50197,7 +50197,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "source": "atlas api monitoringAndLogs getMeasurements --help" }, { "lang": "go", @@ -50279,7 +50279,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "source": "atlas api thirdPartyIntegrations listThirdPartyIntegrations --help" }, { "lang": "go", @@ -50374,7 +50374,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help" }, { "lang": "go", @@ -50467,7 +50467,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations getThirdPartyIntegration --help" }, { "lang": "go", @@ -50583,7 +50583,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations createThirdPartyIntegration --help" }, { "lang": "go", @@ -50696,7 +50696,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations updateThirdPartyIntegration --help" }, { "lang": "go", @@ -50776,7 +50776,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "source": "atlas api projects listProjectInvitations --help" }, { "lang": "go", @@ -50860,7 +50860,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "source": "atlas api projects updateProjectInvitation --help" }, { "lang": "go", @@ -50938,7 +50938,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "source": "atlas api projects createProjectInvitation --help" }, { "lang": "go", @@ -51016,7 +51016,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "source": "atlas api projects deleteProjectInvitation --help" }, { "lang": "go", @@ -51098,7 +51098,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "source": "atlas api projects getProjectInvitation --help" }, { "lang": "go", @@ -51191,7 +51191,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "source": "atlas api projects updateProjectInvitationById --help" }, { "lang": "go", @@ -51262,7 +51262,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "source": "atlas api projects returnAllIpaddresses --help" }, { "lang": "go", @@ -51341,7 +51341,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "source": "atlas api projects listProjectLimits --help" }, { "lang": "go", @@ -51438,7 +51438,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "source": "atlas api projects deleteProjectLimit --help" }, { "lang": "go", @@ -51536,7 +51536,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "source": "atlas api projects getProjectLimit --help" }, { "lang": "go", @@ -51645,7 +51645,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "source": "atlas api projects setProjectLimit --help" }, { "lang": "go", @@ -51735,7 +51735,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "source": "atlas api cloudMigrationService createPushMigration --help" }, { "lang": "go", @@ -51826,7 +51826,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "source": "atlas api cloudMigrationService validateMigration --help" }, { "lang": "go", @@ -51913,7 +51913,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "source": "atlas api cloudMigrationService getValidationStatus --help" }, { "lang": "go", @@ -51989,7 +51989,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "source": "atlas api cloudMigrationService getPushMigration --help" }, { "lang": "go", @@ -52065,7 +52065,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "source": "atlas api cloudMigrationService cutoverMigration --help" }, { "lang": "go", @@ -52129,7 +52129,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "source": "atlas api maintenanceWindows resetMaintenanceWindow --help" }, { "lang": "go", @@ -52194,7 +52194,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "source": "atlas api maintenanceWindows getMaintenanceWindow --help" }, { "lang": "go", @@ -52270,7 +52270,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "source": "atlas api maintenanceWindows updateMaintenanceWindow --help" }, { "lang": "go", @@ -52334,7 +52334,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "source": "atlas api maintenanceWindows toggleMaintenanceAutoDefer --help" }, { "lang": "go", @@ -52398,7 +52398,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "source": "atlas api maintenanceWindows deferMaintenanceWindow --help" }, { "lang": "go", @@ -52465,7 +52465,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "source": "atlas api performanceAdvisor getManagedSlowMs --help" }, { "lang": "go", @@ -52532,7 +52532,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor disableSlowOperationThresholding --help" }, { "lang": "go", @@ -52599,7 +52599,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor enableSlowOperationThresholding --help" }, { "lang": "go", @@ -52727,7 +52727,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "source": "atlas api projects getProjectLtsversions --help" }, { "lang": "go", @@ -52820,7 +52820,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "source": "atlas api networkPeering listPeeringConnections --help" }, { "lang": "go", @@ -52909,7 +52909,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "source": "atlas api networkPeering createPeeringConnection --help" }, { "lang": "go", @@ -52991,7 +52991,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "source": "atlas api networkPeering deletePeeringConnection --help" }, { "lang": "go", @@ -53071,7 +53071,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "source": "atlas api networkPeering getPeeringConnection --help" }, { "lang": "go", @@ -53168,7 +53168,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "source": "atlas api networkPeering updatePeeringConnection --help" }, { "lang": "go", @@ -53238,7 +53238,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "source": "atlas api dataLakePipelines listPipelines --help" }, { "lang": "go", @@ -53317,7 +53317,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "source": "atlas api dataLakePipelines createPipeline --help" }, { "lang": "go", @@ -53396,7 +53396,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "source": "atlas api dataLakePipelines deletePipeline --help" }, { "lang": "go", @@ -53476,7 +53476,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "source": "atlas api dataLakePipelines getPipeline --help" }, { "lang": "go", @@ -53570,7 +53570,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "source": "atlas api dataLakePipelines updatePipeline --help" }, { "lang": "go", @@ -53655,7 +53655,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "source": "atlas api dataLakePipelines listPipelineSchedules --help" }, { "lang": "go", @@ -53756,7 +53756,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "source": "atlas api dataLakePipelines listPipelineSnapshots --help" }, { "lang": "go", @@ -53838,7 +53838,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "source": "atlas api dataLakePipelines pausePipeline --help" }, { "lang": "go", @@ -53920,7 +53920,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "source": "atlas api dataLakePipelines resumePipeline --help" }, { "lang": "go", @@ -54021,7 +54021,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "source": "atlas api dataLakePipelines listPipelineRuns --help" }, { "lang": "go", @@ -54116,7 +54116,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "source": "atlas api dataLakePipelines deletePipelineRunDataset --help" }, { "lang": "go", @@ -54209,7 +54209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "source": "atlas api dataLakePipelines getPipelineRun --help" }, { "lang": "go", @@ -54302,7 +54302,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "source": "atlas api dataLakePipelines triggerSnapshotIngestion --help" }, { "lang": "go", @@ -54384,7 +54384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "source": "atlas api privateEndpointServices createPrivateEndpointService --help" }, { "lang": "go", @@ -54454,7 +54454,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -54533,7 +54533,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -54614,7 +54614,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "source": "atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help" }, { "lang": "go", @@ -54705,7 +54705,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -54795,7 +54795,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -54883,7 +54883,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -54982,7 +54982,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -55067,7 +55067,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "source": "atlas api privateEndpointServices listPrivateEndpointServices --help" }, { "lang": "go", @@ -55161,7 +55161,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "source": "atlas api privateEndpointServices deletePrivateEndpointService --help" }, { "lang": "go", @@ -55256,7 +55256,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "source": "atlas api privateEndpointServices getPrivateEndpointService --help" }, { "lang": "go", @@ -55370,7 +55370,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "source": "atlas api privateEndpointServices createPrivateEndpoint --help" }, { "lang": "go", @@ -55474,7 +55474,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "source": "atlas api privateEndpointServices deletePrivateEndpoint --help" }, { "lang": "go", @@ -55579,7 +55579,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "source": "atlas api privateEndpointServices getPrivateEndpoint --help" }, { "lang": "go", @@ -55651,7 +55651,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "source": "atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "go", @@ -55735,7 +55735,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "source": "atlas api networkPeering disablePeering --help" }, { "lang": "go", @@ -55817,7 +55817,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "source": "atlas api dataFederation listDataFederationPrivateEndpoints --help" }, { "lang": "go", @@ -55896,7 +55896,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation createDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -55978,7 +55978,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation deleteDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -56061,7 +56061,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation getDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -56137,7 +56137,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "source": "atlas api monitoringAndLogs listAtlasProcesses --help" }, { "lang": "go", @@ -56215,7 +56215,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "source": "atlas api monitoringAndLogs getAtlasProcess --help" }, { "lang": "go", @@ -56302,7 +56302,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "source": "atlas api monitoringAndLogs listDatabases --help" }, { "lang": "go", @@ -56389,7 +56389,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "source": "atlas api monitoringAndLogs getDatabase --help" }, { "lang": "go", @@ -56515,7 +56515,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "source": "atlas api monitoringAndLogs getDatabaseMeasurements --help" }, { "lang": "go", @@ -56602,7 +56602,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "source": "atlas api monitoringAndLogs listDiskPartitions --help" }, { "lang": "go", @@ -56686,7 +56686,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "source": "atlas api monitoringAndLogs listDiskMeasurements --help" }, { "lang": "go", @@ -56821,7 +56821,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "source": "atlas api monitoringAndLogs getDiskMeasurements --help" }, { "lang": "go", @@ -57063,7 +57063,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "source": "atlas api monitoringAndLogs getHostMeasurements --help" }, { "lang": "go", @@ -57159,7 +57159,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "source": "atlas api performanceAdvisor listSlowQueryNamespaces --help" }, { "lang": "go", @@ -57279,7 +57279,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "source": "atlas api performanceAdvisor listSlowQueries --help" }, { "lang": "go", @@ -57415,7 +57415,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "source": "atlas api performanceAdvisor listSuggestedIndexes --help" }, { "lang": "go", @@ -57488,7 +57488,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport deletePushBasedLogConfiguration --help" }, { "lang": "go", @@ -57559,7 +57559,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport getPushBasedLogConfiguration --help" }, { "lang": "go", @@ -57642,7 +57642,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport updatePushBasedLogConfiguration --help" }, { "lang": "go", @@ -57725,7 +57725,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport createPushBasedLogConfiguration --help" }, { "lang": "go", @@ -57807,7 +57807,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "source": "atlas api clusters loadSampleDataset --help" }, { "lang": "go", @@ -57883,7 +57883,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "source": "atlas api clusters getSampleDatasetLoadStatus --help" }, { "lang": "go", @@ -57959,7 +57959,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "source": "atlas api serverlessInstances listServerlessInstances --help" }, { "lang": "go", @@ -58041,7 +58041,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "source": "atlas api serverlessInstances createServerlessInstance --help" }, { "lang": "go", @@ -58132,7 +58132,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "source": "atlas api cloudBackups listServerlessBackupRestoreJobs --help" }, { "lang": "go", @@ -58229,7 +58229,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups createServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -58323,7 +58323,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups getServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -58414,7 +58414,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "source": "atlas api cloudBackups listServerlessBackups --help" }, { "lang": "go", @@ -58506,7 +58506,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "source": "atlas api cloudBackups getServerlessBackup --help" }, { "lang": "go", @@ -58585,7 +58585,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor getServerlessAutoIndexing --help" }, { "lang": "go", @@ -58668,7 +58668,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor setServerlessAutoIndexing --help" }, { "lang": "go", @@ -58753,7 +58753,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "source": "atlas api serverlessInstances deleteServerlessInstance --help" }, { "lang": "go", @@ -58836,7 +58836,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "source": "atlas api serverlessInstances getServerlessInstance --help" }, { "lang": "go", @@ -58927,7 +58927,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "source": "atlas api serverlessInstances updateServerlessInstance --help" }, { "lang": "go", @@ -59000,7 +59000,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "source": "atlas api projects getProjectSettings --help" }, { "lang": "go", @@ -59082,7 +59082,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "source": "atlas api projects updateProjectSettings --help" }, { "lang": "go", @@ -59167,7 +59167,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "source": "atlas api teams listProjectTeams --help" }, { "lang": "go", @@ -59259,7 +59259,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "source": "atlas api teams addAllTeamsToProject --help" }, { "lang": "go", @@ -59345,7 +59345,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "source": "atlas api teams removeProjectTeam --help" }, { "lang": "go", @@ -59446,7 +59446,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "source": "atlas api teams updateTeamRoles --help" }, { "lang": "go", @@ -59513,7 +59513,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "source": "atlas api ldapConfiguration getLdapconfiguration --help" }, { "lang": "go", @@ -59592,7 +59592,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "source": "atlas api ldapConfiguration saveLdapconfiguration --help" }, { "lang": "go", @@ -59656,7 +59656,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "source": "atlas api x509Authentication disableCustomerManagedX509 --help" }, { "lang": "go", @@ -59723,7 +59723,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "source": "atlas api ldapConfiguration deleteLdapconfiguration --help" }, { "lang": "go", @@ -59804,7 +59804,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "source": "atlas api ldapConfiguration verifyLdapconfiguration --help" }, { "lang": "go", @@ -59883,7 +59883,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "source": "atlas api ldapConfiguration getLdapconfigurationStatus --help" }, { "lang": "go", @@ -59977,7 +59977,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "source": "atlas api projects listProjectUsers --help" }, { "lang": "go", @@ -60059,7 +60059,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "source": "atlas api projects removeProjectUser --help" }, { "lang": "go", @@ -60155,7 +60155,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "source": "atlas api projects updateProjectRoles --help" }, { "lang": "go", @@ -60245,7 +60245,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "source": "atlas api organizations listOrganizations --help" }, { "lang": "go", @@ -60330,7 +60330,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "source": "atlas api organizations createOrganization --help" }, { "lang": "go", @@ -60406,7 +60406,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "source": "atlas api organizations deleteOrganization --help" }, { "lang": "go", @@ -60480,7 +60480,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "source": "atlas api organizations getOrganization --help" }, { "lang": "go", @@ -60565,7 +60565,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "source": "atlas api organizations renameOrganization --help" }, { "lang": "go", @@ -60645,7 +60645,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "source": "atlas api programmaticApiKeys listApiKeys --help" }, { "lang": "go", @@ -60725,7 +60725,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "source": "atlas api programmaticApiKeys createApiKey --help" }, { "lang": "go", @@ -60808,7 +60808,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "source": "atlas api programmaticApiKeys deleteApiKey --help" }, { "lang": "go", @@ -60889,7 +60889,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "source": "atlas api programmaticApiKeys getApiKey --help" }, { "lang": "go", @@ -60984,7 +60984,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "source": "atlas api programmaticApiKeys updateApiKey --help" }, { "lang": "go", @@ -61076,7 +61076,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "source": "atlas api programmaticApiKeys listApiKeyAccessListsEntries --help" }, { "lang": "go", @@ -61182,7 +61182,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys createApiKeyAccessList --help" }, { "lang": "go", @@ -61282,7 +61282,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "source": "atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help" }, { "lang": "go", @@ -61377,7 +61377,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys getApiKeyAccessList --help" }, { "lang": "go", @@ -61455,7 +61455,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "source": "atlas api invoices createCostExplorerQueryProcess --help" }, { "lang": "go", @@ -61546,7 +61546,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "source": "atlas api invoices createCostExplorerQueryProcess1 --help" }, { "lang": "go", @@ -61661,7 +61661,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "source": "atlas api events listOrganizationEvents --help" }, { "lang": "go", @@ -61752,7 +61752,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "source": "atlas api events getOrganizationEvent --help" }, { "lang": "go", @@ -61825,7 +61825,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "source": "atlas api federatedAuthentication getFederationSettings --help" }, { "lang": "go", @@ -61915,7 +61915,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "source": "atlas api organizations listOrganizationProjects --help" }, { "lang": "go", @@ -62000,7 +62000,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "source": "atlas api organizations listOrganizationInvitations --help" }, { "lang": "go", @@ -62082,7 +62082,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "source": "atlas api organizations updateOrganizationInvitation --help" }, { "lang": "go", @@ -62164,7 +62164,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "source": "atlas api organizations createOrganizationInvitation --help" }, { "lang": "go", @@ -62246,7 +62246,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "source": "atlas api organizations deleteOrganizationInvitation --help" }, { "lang": "go", @@ -62326,7 +62326,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "source": "atlas api organizations getOrganizationInvitation --help" }, { "lang": "go", @@ -62420,7 +62420,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "source": "atlas api organizations updateOrganizationInvitationById --help" }, { "lang": "go", @@ -62578,7 +62578,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "source": "atlas api invoices listInvoices --help" }, { "lang": "go", @@ -62648,7 +62648,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "source": "atlas api invoices listPendingInvoices --help" }, { "lang": "go", @@ -62736,7 +62736,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "source": "atlas api invoices getInvoice --help" }, { "lang": "go", @@ -62817,7 +62817,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "source": "atlas api invoices downloadInvoiceCsv --help" }, { "lang": "go", @@ -62890,7 +62890,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "source": "atlas api cloudMigrationService listSourceProjects --help" }, { "lang": "go", @@ -62957,7 +62957,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "source": "atlas api cloudMigrationService deleteLinkToken --help" }, { "lang": "go", @@ -63036,7 +63036,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "source": "atlas api cloudMigrationService createLinkToken --help" }, { "lang": "go", @@ -63109,7 +63109,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "source": "atlas api organizations getOrganizationSettings --help" }, { "lang": "go", @@ -63191,7 +63191,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "source": "atlas api organizations updateOrganizationSettings --help" }, { "lang": "go", @@ -63277,7 +63277,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "source": "atlas api teams listOrganizationTeams --help" }, { "lang": "go", @@ -63366,7 +63366,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "source": "atlas api teams createTeam --help" }, { "lang": "go", @@ -63452,7 +63452,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "source": "atlas api teams getTeamByName --help" }, { "lang": "go", @@ -63541,7 +63541,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "source": "atlas api teams deleteTeam --help" }, { "lang": "go", @@ -63628,7 +63628,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "source": "atlas api teams getTeamById --help" }, { "lang": "go", @@ -63729,7 +63729,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "source": "atlas api teams renameTeam --help" }, { "lang": "go", @@ -63827,7 +63827,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "source": "atlas api teams listTeamUsers --help" }, { "lang": "go", @@ -63931,7 +63931,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "source": "atlas api teams addTeamUser --help" }, { "lang": "go", @@ -64029,7 +64029,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "source": "atlas api teams removeTeamUser --help" }, { "lang": "go", @@ -64111,7 +64111,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "source": "atlas api organizations listOrganizationUsers --help" }, { "lang": "go", @@ -64196,7 +64196,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "source": "atlas api organizations removeOrganizationUser --help" }, { "lang": "go", @@ -64292,7 +64292,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "source": "atlas api organizations updateOrganizationRoles --help" }, { "lang": "go", @@ -64370,7 +64370,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUser --help" + "source": "atlas api mongoDbCloudUsers createUser --help" }, { "lang": "go", @@ -64447,7 +64447,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "source": "atlas api mongoDbCloudUsers getUserByUsername --help" }, { "lang": "go", @@ -64526,7 +64526,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUser --help" + "source": "atlas api mongoDbCloudUsers getUser --help" }, { "lang": "go", 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 e899c96617..583da48bf3 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 @@ -28295,7 +28295,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSystemStatus --help + source: atlas api root getSystemStatus --help - label: Go lang: go source: | @@ -28365,7 +28365,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help + source: atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help - label: Go lang: go source: | @@ -28436,7 +28436,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClustersForAllProjects --help + source: atlas api clusters listClustersForAllProjects --help - label: Go lang: go source: | @@ -28507,7 +28507,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listEventTypes --help + source: atlas api events listEventTypes --help - label: Go lang: go source: | @@ -28576,7 +28576,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederationApp --help + source: atlas api federatedAuthentication deleteFederationApp --help - label: Go lang: go source: | @@ -28650,7 +28650,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listConnectedOrgConfigs --help + source: atlas api federatedAuthentication listConnectedOrgConfigs --help - label: Go lang: go source: | @@ -28732,7 +28732,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeConnectedOrgConfig --help + source: atlas api federatedAuthentication removeConnectedOrgConfig --help - label: Go lang: go source: | @@ -28813,7 +28813,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getConnectedOrgConfig --help + source: atlas api federatedAuthentication getConnectedOrgConfig --help - label: Go lang: go source: | @@ -28901,7 +28901,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateConnectedOrgConfig --help + source: atlas api federatedAuthentication updateConnectedOrgConfig --help - label: Go lang: go source: | @@ -28978,7 +28978,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listRoleMappings --help + source: atlas api federatedAuthentication listRoleMappings --help - label: Go lang: go source: | @@ -29057,7 +29057,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRoleMapping --help + source: atlas api federatedAuthentication createRoleMapping --help - label: Go lang: go source: | @@ -29142,7 +29142,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteRoleMapping --help + source: atlas api federatedAuthentication deleteRoleMapping --help - label: Go lang: go source: | @@ -29224,7 +29224,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRoleMapping --help + source: atlas api federatedAuthentication getRoleMapping --help - label: Go lang: go source: | @@ -29313,7 +29313,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateRoleMapping --help + source: atlas api federatedAuthentication updateRoleMapping --help - label: Go lang: go source: | @@ -29413,7 +29413,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIdentityProviders --help + source: atlas api federatedAuthentication listIdentityProviders --help - label: Go lang: go source: | @@ -29495,7 +29495,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProvider --help + source: atlas api federatedAuthentication getIdentityProvider --help - label: Go lang: go source: | @@ -29585,7 +29585,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateIdentityProvider --help + source: atlas api federatedAuthentication updateIdentityProvider --help - label: Go lang: go source: | @@ -29662,7 +29662,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProviderMetadata --help + source: atlas api federatedAuthentication getIdentityProviderMetadata --help - label: Go lang: go source: | @@ -29735,7 +29735,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjects --help + source: atlas api projects listProjects --help - label: Go lang: go source: | @@ -29825,7 +29825,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProject --help + source: atlas api projects createProject --help - label: Go lang: go source: | @@ -29900,7 +29900,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProject --help + source: atlas api projects deleteProject --help - label: Go lang: go source: | @@ -29970,7 +29970,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProject --help + source: atlas api projects getProject --help - label: Go lang: go source: | @@ -30051,7 +30051,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProject --help + source: atlas api projects updateProject --help - label: Go lang: go source: | @@ -30130,7 +30130,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectIpAccessLists --help + source: atlas api projectIpAccessList listProjectIpAccessLists --help - label: Go lang: go source: | @@ -30217,7 +30217,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectIpAccessList --help + source: atlas api projectIpAccessList createProjectIpAccessList --help - label: Go lang: go source: | @@ -30308,7 +30308,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectIpAccessList --help + source: atlas api projectIpAccessList deleteProjectIpAccessList --help - label: Go lang: go source: | @@ -30391,7 +30391,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpList --help + source: atlas api projectIpAccessList getProjectIpList --help - label: Go lang: go source: | @@ -30474,7 +30474,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpAccessListStatus --help + source: atlas api projectIpAccessList getProjectIpAccessListStatus --help - label: Go lang: go source: | @@ -30549,7 +30549,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurations --help + source: atlas api alertConfigurations listAlertConfigurations --help - label: Go lang: go source: | @@ -30629,7 +30629,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAlertConfiguration --help + source: atlas api alertConfigurations createAlertConfiguration --help - label: Go lang: go source: | @@ -30715,7 +30715,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAlertConfiguration --help + source: atlas api alertConfigurations deleteAlertConfiguration --help - label: Go lang: go source: | @@ -30798,7 +30798,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlertConfiguration --help + source: atlas api alertConfigurations getAlertConfiguration --help - label: Go lang: go source: | @@ -30890,7 +30890,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAlertConfiguration --help + source: atlas api alertConfigurations toggleAlertConfiguration --help - label: Go lang: go source: | @@ -30988,7 +30988,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAlertConfiguration --help + source: atlas api alertConfigurations updateAlertConfiguration --help - label: Go lang: go source: | @@ -31079,7 +31079,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertsByAlertConfigurationId --help + source: atlas api alerts listAlertsByAlertConfigurationId --help - label: Go lang: go source: | @@ -31165,7 +31165,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlerts --help + source: atlas api alerts listAlerts --help - label: Go lang: go source: | @@ -31248,7 +31248,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlert --help + source: atlas api alerts getAlert --help - label: Go lang: go source: | @@ -31340,7 +31340,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acknowledgeAlert --help + source: atlas api alerts acknowledgeAlert --help - label: Go lang: go source: | @@ -31431,7 +31431,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationsByAlertId --help + source: atlas api alertConfigurations listAlertConfigurationsByAlertId --help - label: Go lang: go source: | @@ -31506,7 +31506,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectApiKeys --help + source: atlas api programmaticApiKeys listProjectApiKeys --help - label: Go lang: go source: | @@ -31581,7 +31581,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectApiKey --help + source: atlas api programmaticApiKeys createProjectApiKey --help - label: Go lang: go source: | @@ -31668,7 +31668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectApiKey --help + source: atlas api programmaticApiKeys removeProjectApiKey --help - label: Go lang: go source: | @@ -31757,7 +31757,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKeyRoles --help + source: atlas api programmaticApiKeys updateApiKeyRoles --help - label: Go lang: go source: | @@ -31847,7 +31847,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectApiKey --help + source: atlas api programmaticApiKeys addProjectApiKey --help - label: Go lang: go source: | @@ -31920,7 +31920,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAuditingConfiguration --help + source: atlas api auditing getAuditingConfiguration --help - label: Go lang: go source: | @@ -31997,7 +31997,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAuditingConfiguration --help + source: atlas api auditing updateAuditingConfiguration --help - label: Go lang: go source: | @@ -32070,7 +32070,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAWSCustomDNS --help + source: atlas api awsClustersDns getAwscustomDns --help - label: Go lang: go source: | @@ -32145,7 +32145,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAWSCustomDNS --help + source: atlas api awsClustersDns toggleAwscustomDns --help - label: Go lang: go source: | @@ -32222,7 +32222,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listExportBuckets --help + source: atlas api cloudBackups listExportBuckets --help - label: Go lang: go source: | @@ -32305,7 +32305,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createExportBucket --help + source: atlas api cloudBackups createExportBucket --help - label: Go lang: go source: | @@ -32392,7 +32392,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteExportBucket --help + source: atlas api cloudBackups deleteExportBucket --help - label: Go lang: go source: | @@ -32472,7 +32472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getExportBucket --help + source: atlas api cloudBackups getExportBucket --help - label: Go lang: go source: | @@ -32545,7 +32545,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataProtectionSettings --help + source: atlas api cloudBackups getDataProtectionSettings --help - label: Go lang: go source: | @@ -32634,7 +32634,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDataProtectionSettings --help + source: atlas api cloudBackups updateDataProtectionSettings --help - label: Go lang: go source: | @@ -32708,7 +32708,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderAccessRoles --help + source: atlas api cloudProviderAccess listCloudProviderAccessRoles --help - label: Go lang: go source: | @@ -32786,7 +32786,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCloudProviderAccessRole --help + source: atlas api cloudProviderAccess createCloudProviderAccessRole --help - label: Go lang: go source: | @@ -32876,7 +32876,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -32954,7 +32954,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCloudProviderAccessRole --help + source: atlas api cloudProviderAccess getCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33045,7 +33045,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33128,7 +33128,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusters --help + source: atlas api clusters listClusters --help - label: Go lang: go source: | @@ -33213,7 +33213,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCluster --help + source: atlas api clusters createCluster --help - label: Go lang: go source: | @@ -33306,7 +33306,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCluster --help + source: atlas api clusters deleteCluster --help - label: Go lang: go source: | @@ -33389,7 +33389,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCluster --help + source: atlas api clusters getCluster --help - label: Go lang: go source: | @@ -33481,7 +33481,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCluster --help + source: atlas api clusters updateCluster --help - label: Go lang: go source: | @@ -33567,7 +33567,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupExportJobs --help + source: atlas api cloudBackups listBackupExportJobs --help - label: Go lang: go source: | @@ -33656,7 +33656,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupExportJob --help + source: atlas api cloudBackups createBackupExportJob --help - label: Go lang: go source: | @@ -33743,7 +33743,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupExportJob --help + source: atlas api cloudBackups getBackupExportJob --help - label: Go lang: go source: | @@ -33824,7 +33824,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupRestoreJobs --help + source: atlas api cloudBackups listBackupRestoreJobs --help - label: Go lang: go source: | @@ -33917,7 +33917,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupRestoreJob --help + source: atlas api cloudBackups createBackupRestoreJob --help - label: Go lang: go source: | @@ -34010,7 +34010,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cancelBackupRestoreJob --help + source: atlas api cloudBackups cancelBackupRestoreJob --help - label: Go lang: go source: | @@ -34096,7 +34096,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupRestoreJob --help + source: atlas api cloudBackups getBackupRestoreJob --help - label: Go lang: go source: | @@ -34176,7 +34176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllBackupSchedules --help + source: atlas api cloudBackups deleteAllBackupSchedules --help - label: Go lang: go source: | @@ -34255,7 +34255,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupSchedule --help + source: atlas api cloudBackups getBackupSchedule --help - label: Go lang: go source: | @@ -34346,7 +34346,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateBackupSchedule --help + source: atlas api cloudBackups updateBackupSchedule --help - label: Go lang: go source: | @@ -34434,7 +34434,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listReplicaSetBackups --help + source: atlas api cloudBackups listReplicaSetBackups --help - label: Go lang: go source: | @@ -34523,7 +34523,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api takeSnapshot --help + source: atlas api cloudBackups takeSnapshot --help - label: Go lang: go source: | @@ -34616,7 +34616,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteReplicaSetBackup --help + source: atlas api cloudBackups deleteReplicaSetBackup --help - label: Go lang: go source: | @@ -34704,7 +34704,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getReplicaSetBackup --help + source: atlas api cloudBackups getReplicaSetBackup --help - label: Go lang: go source: | @@ -34799,7 +34799,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateSnapshotRetention --help + source: atlas api cloudBackups updateSnapshotRetention --help - label: Go lang: go source: | @@ -34890,7 +34890,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteShardedClusterBackup --help + source: atlas api cloudBackups deleteShardedClusterBackup --help - label: Go lang: go source: | @@ -34978,7 +34978,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getShardedClusterBackup --help + source: atlas api cloudBackups getShardedClusterBackup --help - label: Go lang: go source: | @@ -35058,7 +35058,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listShardedClusterBackups --help + source: atlas api cloudBackups listShardedClusterBackups --help - label: Go lang: go source: | @@ -35151,7 +35151,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadSharedClusterBackup --help + source: atlas api sharedTierSnapshots downloadSharedClusterBackup --help - label: Go lang: go source: | @@ -35246,7 +35246,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -35330,7 +35330,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackupRestoreJobs --help + source: atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help - label: Go lang: go source: | @@ -35419,7 +35419,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -35499,7 +35499,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackups --help + source: atlas api sharedTierSnapshots listSharedClusterBackups --help - label: Go lang: go source: | @@ -35588,7 +35588,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackup --help + source: atlas api sharedTierSnapshots getSharedClusterBackup --help - label: Go lang: go source: | @@ -35670,7 +35670,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupCheckpoints --help + source: atlas api legacyBackup listLegacyBackupCheckpoints --help - label: Go lang: go source: | @@ -35762,7 +35762,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupCheckpoint --help + source: atlas api legacyBackup getLegacyBackupCheckpoint --help - label: Go lang: go source: | @@ -35855,7 +35855,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch createAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -35956,7 +35956,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesDeprecated --help + source: atlas api atlasSearch listAtlasSearchIndexesDeprecated --help - label: Go lang: go source: | @@ -36050,7 +36050,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36141,7 +36141,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch getAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36243,7 +36243,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch updateAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36330,7 +36330,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedNamespace --help + source: atlas api globalClusters getManagedNamespace --help - label: Go lang: go source: | @@ -36413,7 +36413,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllCustomZoneMappings --help + source: atlas api globalClusters deleteAllCustomZoneMappings --help - label: Go lang: go source: | @@ -36504,7 +36504,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomZoneMapping --help + source: atlas api globalClusters createCustomZoneMapping --help - label: Go lang: go source: | @@ -36603,7 +36603,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteManagedNamespace --help + source: atlas api globalClusters deleteManagedNamespace --help - label: Go lang: go source: | @@ -36696,7 +36696,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createManagedNamespace --help + source: atlas api globalClusters createManagedNamespace --help - label: Go lang: go source: | @@ -36854,7 +36854,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRollingIndex --help + source: atlas api rollingIndex createRollingIndex --help - label: Go lang: go source: | @@ -36942,7 +36942,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOnlineArchives --help + source: atlas api onlineArchive listOnlineArchives --help - label: Go lang: go source: | @@ -37035,7 +37035,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOnlineArchive --help + source: atlas api onlineArchive createOnlineArchive --help - label: Go lang: go source: | @@ -37131,7 +37131,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOnlineArchive --help + source: atlas api onlineArchive deleteOnlineArchive --help - label: Go lang: go source: | @@ -37224,7 +37224,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOnlineArchive --help + source: atlas api onlineArchive getOnlineArchive --help - label: Go lang: go source: | @@ -37326,7 +37326,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOnlineArchive --help + source: atlas api onlineArchive updateOnlineArchive --help - label: Go lang: go source: | @@ -37438,7 +37438,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadOnlineArchiveQueryLogs --help + source: atlas api onlineArchive downloadOnlineArchiveQueryLogs --help - label: Go lang: go source: | @@ -37525,7 +37525,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api endOutageSimulation --help + source: atlas api clusterOutageSimulation endOutageSimulation --help - label: Go lang: go source: | @@ -37609,7 +37609,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOutageSimulation --help + source: atlas api clusterOutageSimulation getOutageSimulation --help - label: Go lang: go source: | @@ -37698,7 +37698,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startOutageSimulation --help + source: atlas api clusterOutageSimulation startOutageSimulation --help - label: Go lang: go source: | @@ -37786,7 +37786,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterAdvancedConfiguration --help + source: atlas api clusters getClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -37880,7 +37880,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help + source: atlas api clusters updateClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -37962,7 +37962,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api testFailover --help + source: atlas api clusters testFailover --help - label: Go lang: go source: | @@ -38062,7 +38062,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupRestoreJobs --help + source: atlas api legacyBackup listLegacyBackupRestoreJobs --help - label: Go lang: go source: | @@ -38149,7 +38149,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLegacyBackupRestoreJob --help + source: atlas api legacyBackup createLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -38246,7 +38246,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupRestoreJob --help + source: atlas api legacyBackup getLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -38327,7 +38327,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchDeployment --help + source: atlas api atlasSearch deleteAtlasSearchDeployment --help - label: Go lang: go source: | @@ -38408,7 +38408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchDeployment --help + source: atlas api atlasSearch getAtlasSearchDeployment --help - label: Go lang: go source: | @@ -38498,7 +38498,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchDeployment --help + source: atlas api atlasSearch updateAtlasSearchDeployment --help - label: Go lang: go source: | @@ -38592,7 +38592,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchDeployment --help + source: atlas api atlasSearch createAtlasSearchDeployment --help - label: Go lang: go source: | @@ -38679,7 +38679,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshotSchedule --help + source: atlas api legacyBackup getLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -38767,7 +38767,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + source: atlas api legacyBackup updateLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -38863,7 +38863,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacySnapshots --help + source: atlas api legacyBackup listLegacySnapshots --help - label: Go lang: go source: | @@ -38953,7 +38953,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLegacySnapshot --help + source: atlas api legacyBackup deleteLegacySnapshot --help - label: Go lang: go source: | @@ -39040,7 +39040,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshot --help + source: atlas api legacyBackup getLegacySnapshot --help - label: Go lang: go source: | @@ -39134,7 +39134,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotRetention --help + source: atlas api legacyBackup updateLegacySnapshotRetention --help - label: Go lang: go source: | @@ -39216,7 +39216,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterStatus --help + source: atlas api clusters getClusterStatus --help - label: Go lang: go source: | @@ -39330,7 +39330,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostLogs --help + source: atlas api monitoringAndLogs getHostLogs --help - label: Go lang: go source: | @@ -39417,7 +39417,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderRegions --help + source: atlas api clusters listCloudProviderRegions --help - label: Go lang: go source: | @@ -39501,7 +39501,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedCluster --help + source: atlas api clusters upgradeSharedCluster --help - label: Go lang: go source: | @@ -39589,7 +39589,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedClusterToServerless --help + source: atlas api clusters upgradeSharedClusterToServerless --help - label: Go lang: go source: | @@ -39678,7 +39678,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help + source: atlas api networkPeering listPeeringContainerByCloudProvider --help - label: Go lang: go source: | @@ -39761,7 +39761,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringContainer --help + source: atlas api networkPeering createPeeringContainer --help - label: Go lang: go source: | @@ -39850,7 +39850,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringContainer --help + source: atlas api networkPeering deletePeeringContainer --help - label: Go lang: go source: | @@ -39928,7 +39928,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringContainer --help + source: atlas api networkPeering getPeeringContainer --help - label: Go lang: go source: | @@ -40021,7 +40021,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringContainer --help + source: atlas api networkPeering updatePeeringContainer --help - label: Go lang: go source: | @@ -40097,7 +40097,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainers --help + source: atlas api networkPeering listPeeringContainers --help - label: Go lang: go source: | @@ -40168,7 +40168,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCustomDatabaseRoles --help + source: atlas api customDatabaseRoles listCustomDatabaseRoles --help - label: Go lang: go source: | @@ -40251,7 +40251,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomDatabaseRole --help + source: atlas api customDatabaseRoles createCustomDatabaseRole --help - label: Go lang: go source: | @@ -40334,7 +40334,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCustomDatabaseRole --help + source: atlas api customDatabaseRoles deleteCustomDatabaseRole --help - label: Go lang: go source: | @@ -40410,7 +40410,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCustomDatabaseRole --help + source: atlas api customDatabaseRoles getCustomDatabaseRole --help - label: Go lang: go source: | @@ -40499,7 +40499,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCustomDatabaseRole --help + source: atlas api customDatabaseRoles updateCustomDatabaseRole --help - label: Go lang: go source: | @@ -40583,7 +40583,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFederatedDatabases --help + source: atlas api dataFederation listFederatedDatabases --help - label: Go lang: go source: | @@ -40664,7 +40664,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFederatedDatabase --help + source: atlas api dataFederation createFederatedDatabase --help - label: Go lang: go source: | @@ -40743,7 +40743,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederatedDatabase --help + source: atlas api dataFederation deleteFederatedDatabase --help - label: Go lang: go source: | @@ -40820,7 +40820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederatedDatabase --help + source: atlas api dataFederation getFederatedDatabase --help - label: Go lang: go source: | @@ -40909,7 +40909,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFederatedDatabase --help + source: atlas api dataFederation updateFederatedDatabase --help - label: Go lang: go source: | @@ -40992,7 +40992,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimits --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimits --help - label: Go lang: go source: | @@ -41085,7 +41085,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOneDataFederationInstanceQueryLimit --help + source: atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help - label: Go lang: go source: | @@ -41178,7 +41178,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimit --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimit --help - label: Go lang: go source: | @@ -41281,7 +41281,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + source: atlas api dataFederation createOneDataFederationQueryLimit --help - label: Go lang: go source: | @@ -41384,7 +41384,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFederatedDatabaseQueryLogs --help + source: atlas api dataFederation downloadFederatedDatabaseQueryLogs --help - label: Go lang: go source: | @@ -41458,7 +41458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUsers --help + source: atlas api databaseUsers listDatabaseUsers --help - label: Go lang: go source: | @@ -41632,7 +41632,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUser --help + source: atlas api databaseUsers createDatabaseUser --help - label: Go lang: go source: | @@ -41735,7 +41735,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDatabaseUser --help + source: atlas api databaseUsers deleteDatabaseUser --help - label: Go lang: go source: | @@ -41831,7 +41831,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseUser --help + source: atlas api databaseUsers getDatabaseUser --help - label: Go lang: go source: | @@ -41940,7 +41940,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDatabaseUser --help + source: atlas api databaseUsers updateDatabaseUser --help - label: Go lang: go source: | @@ -42024,7 +42024,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUserCertificates --help + source: atlas api x509Authentication listDatabaseUserCertificates --help - label: Go lang: go source: | @@ -42122,7 +42122,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUserCertificate --help + source: atlas api x509Authentication createDatabaseUserCertificate --help - label: Go lang: go source: | @@ -42241,7 +42241,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByClusterName --help + source: atlas api accessTracking listAccessLogsByClusterName --help - label: Go lang: go source: | @@ -42353,7 +42353,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByHostname --help + source: atlas api accessTracking listAccessLogsByHostname --help - label: Go lang: go source: | @@ -42425,7 +42425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help - label: Go lang: go source: | @@ -42518,7 +42518,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help - label: Go lang: go source: | @@ -42599,7 +42599,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help - label: Go lang: go source: | @@ -42682,7 +42682,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -42779,7 +42779,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help - label: Go lang: go source: | @@ -42864,7 +42864,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -42990,7 +42990,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectEvents --help + source: atlas api events listProjectEvents --help - label: Go lang: go source: | @@ -43079,7 +43079,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectEvent --help + source: atlas api events getProjectEvent --help - label: Go lang: go source: | @@ -43150,7 +43150,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listMetricTypes --help + source: atlas api monitoringAndLogs listMetricTypes --help - label: Go lang: go source: | @@ -43251,7 +43251,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIndexMetrics --help + source: atlas api monitoringAndLogs getIndexMetrics --help - label: Go lang: go source: | @@ -43351,7 +43351,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIndexMetrics --help + source: atlas api monitoringAndLogs listIndexMetrics --help - label: Go lang: go source: | @@ -43450,7 +43450,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMeasurements --help + source: atlas api monitoringAndLogs getMeasurements --help - label: Go lang: go source: | @@ -43526,7 +43526,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listThirdPartyIntegrations --help + source: atlas api thirdPartyIntegrations listThirdPartyIntegrations --help - label: Go lang: go source: | @@ -43617,7 +43617,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help - label: Go lang: go source: | @@ -43707,7 +43707,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations getThirdPartyIntegration --help - label: Go lang: go source: | @@ -43809,7 +43809,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations createThirdPartyIntegration --help - label: Go lang: go source: | @@ -43913,7 +43913,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations updateThirdPartyIntegration --help - label: Go lang: go source: | @@ -43995,7 +43995,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectInvitations --help + source: atlas api projects listProjectInvitations --help - label: Go lang: go source: | @@ -44076,7 +44076,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitation --help + source: atlas api projects updateProjectInvitation --help - label: Go lang: go source: | @@ -44157,7 +44157,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectInvitation --help + source: atlas api projects createProjectInvitation --help - label: Go lang: go source: | @@ -44240,7 +44240,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectInvitation --help + source: atlas api projects deleteProjectInvitation --help - label: Go lang: go source: | @@ -44321,7 +44321,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectInvitation --help + source: atlas api projects getProjectInvitation --help - label: Go lang: go source: | @@ -44410,7 +44410,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitationById --help + source: atlas api projects updateProjectInvitationById --help - label: Go lang: go source: | @@ -44486,7 +44486,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllIPAddresses --help + source: atlas api projects returnAllIpaddresses --help - label: Go lang: go source: | @@ -44563,7 +44563,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectLimits --help + source: atlas api projects listProjectLimits --help - label: Go lang: go source: | @@ -44672,7 +44672,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectLimit --help + source: atlas api projects deleteProjectLimit --help - label: Go lang: go source: | @@ -44782,7 +44782,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLimit --help + source: atlas api projects getProjectLimit --help - label: Go lang: go source: | @@ -44902,7 +44902,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setProjectLimit --help + source: atlas api projects setProjectLimit --help - label: Go lang: go source: | @@ -44998,7 +44998,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushMigration --help + source: atlas api cloudMigrationService createPushMigration --help - label: Go lang: go source: | @@ -45077,7 +45077,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushMigration --help + source: atlas api cloudMigrationService getPushMigration --help - label: Go lang: go source: | @@ -45151,7 +45151,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cutoverMigration --help + source: atlas api cloudMigrationService cutoverMigration --help - label: Go lang: go source: | @@ -45240,7 +45240,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateMigration --help + source: atlas api cloudMigrationService validateMigration --help - label: Go lang: go source: | @@ -45329,7 +45329,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getValidationStatus --help + source: atlas api cloudMigrationService getValidationStatus --help - label: Go lang: go source: | @@ -45397,7 +45397,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resetMaintenanceWindow --help + source: atlas api maintenanceWindows resetMaintenanceWindow --help - label: Go lang: go source: | @@ -45465,7 +45465,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMaintenanceWindow --help + source: atlas api maintenanceWindows getMaintenanceWindow --help - label: Go lang: go source: | @@ -45541,7 +45541,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateMaintenanceWindow --help + source: atlas api maintenanceWindows updateMaintenanceWindow --help - label: Go lang: go source: | @@ -45613,7 +45613,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help + source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help - label: Go lang: go source: | @@ -45685,7 +45685,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deferMaintenanceWindow --help + source: atlas api maintenanceWindows deferMaintenanceWindow --help - label: Go lang: go source: | @@ -45758,7 +45758,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedSlowMs --help + source: atlas api performanceAdvisor getManagedSlowMs --help - label: Go lang: go source: | @@ -45827,7 +45827,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableSlowOperationThresholding --help + source: atlas api performanceAdvisor disableSlowOperationThresholding --help - label: Go lang: go source: | @@ -45896,7 +45896,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api enableSlowOperationThresholding --help + source: atlas api performanceAdvisor enableSlowOperationThresholding --help - label: Go lang: go source: | @@ -46010,7 +46010,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLTSVersions --help + source: atlas api projects getProjectLtsversions --help - label: Go lang: go source: | @@ -46094,7 +46094,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringConnections --help + source: atlas api networkPeering listPeeringConnections --help - label: Go lang: go source: | @@ -46178,7 +46178,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringConnection --help + source: atlas api networkPeering createPeeringConnection --help - label: Go lang: go source: | @@ -46262,7 +46262,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringConnection --help + source: atlas api networkPeering deletePeeringConnection --help - label: Go lang: go source: | @@ -46341,7 +46341,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringConnection --help + source: atlas api networkPeering getPeeringConnection --help - label: Go lang: go source: | @@ -46431,7 +46431,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringConnection --help + source: atlas api networkPeering updatePeeringConnection --help - label: Go lang: go source: | @@ -46507,7 +46507,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelines --help + source: atlas api dataLakePipelines listPipelines --help - label: Go lang: go source: | @@ -46585,7 +46585,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPipeline --help + source: atlas api dataLakePipelines createPipeline --help - label: Go lang: go source: | @@ -46668,7 +46668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipeline --help + source: atlas api dataLakePipelines deletePipeline --help - label: Go lang: go source: | @@ -46747,7 +46747,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipeline --help + source: atlas api dataLakePipelines getPipeline --help - label: Go lang: go source: | @@ -46836,7 +46836,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePipeline --help + source: atlas api dataLakePipelines updatePipeline --help - label: Go lang: go source: | @@ -46922,7 +46922,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSchedules --help + source: atlas api dataLakePipelines listPipelineSchedules --help - label: Go lang: go source: | @@ -47012,7 +47012,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSnapshots --help + source: atlas api dataLakePipelines listPipelineSnapshots --help - label: Go lang: go source: | @@ -47092,7 +47092,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pausePipeline --help + source: atlas api dataLakePipelines pausePipeline --help - label: Go lang: go source: | @@ -47176,7 +47176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resumePipeline --help + source: atlas api dataLakePipelines resumePipeline --help - label: Go lang: go source: | @@ -47270,7 +47270,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineRuns --help + source: atlas api dataLakePipelines listPipelineRuns --help - label: Go lang: go source: | @@ -47360,7 +47360,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipelineRunDataset --help + source: atlas api dataLakePipelines deletePipelineRunDataset --help - label: Go lang: go source: | @@ -47449,7 +47449,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipelineRun --help + source: atlas api dataLakePipelines getPipelineRun --help - label: Go lang: go source: | @@ -47536,7 +47536,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api triggerSnapshotIngestion --help + source: atlas api dataLakePipelines triggerSnapshotIngestion --help - label: Go lang: go source: | @@ -47622,7 +47622,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateEndpointServices --help + source: atlas api privateEndpointServices listPrivateEndpointServices --help - label: Go lang: go source: | @@ -47711,7 +47711,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpointService --help + source: atlas api privateEndpointServices deletePrivateEndpointService --help - label: Go lang: go source: | @@ -47801,7 +47801,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpointService --help + source: atlas api privateEndpointServices getPrivateEndpointService --help - label: Go lang: go source: | @@ -47903,7 +47903,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpoint --help + source: atlas api privateEndpointServices createPrivateEndpoint --help - label: Go lang: go source: | @@ -48003,7 +48003,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpoint --help + source: atlas api privateEndpointServices deletePrivateEndpoint --help - label: Go lang: go source: | @@ -48100,7 +48100,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpoint --help + source: atlas api privateEndpointServices getPrivateEndpoint --help - label: Go lang: go source: | @@ -48179,7 +48179,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpointService --help + source: atlas api privateEndpointServices createPrivateEndpointService --help - label: Go lang: go source: | @@ -48254,7 +48254,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -48331,7 +48331,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -48415,7 +48415,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessPrivateEndpoints --help + source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help - label: Go lang: go source: | @@ -48505,7 +48505,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -48596,7 +48596,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -48682,7 +48682,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -48775,7 +48775,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -48852,7 +48852,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + source: atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help - label: Go lang: go source: | @@ -48933,7 +48933,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disablePeering --help + source: atlas api networkPeering disablePeering --help - label: Go lang: go source: | @@ -49013,7 +49013,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDataFederationPrivateEndpoints --help + source: atlas api dataFederation listDataFederationPrivateEndpoints --help - label: Go lang: go source: | @@ -49109,7 +49109,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help + source: atlas api dataFederation createDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -49193,7 +49193,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help + source: atlas api dataFederation deleteDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -49274,7 +49274,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataFederationPrivateEndpoint --help + source: atlas api dataFederation getDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -49346,7 +49346,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasProcesses --help + source: atlas api monitoringAndLogs listAtlasProcesses --help - label: Go lang: go source: | @@ -49423,7 +49423,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasProcess --help + source: atlas api monitoringAndLogs getAtlasProcess --help - label: Go lang: go source: | @@ -49503,7 +49503,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabases --help + source: atlas api monitoringAndLogs listDatabases --help - label: Go lang: go source: | @@ -49586,7 +49586,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabase --help + source: atlas api monitoringAndLogs getDatabase --help - label: Go lang: go source: | @@ -49695,7 +49695,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseMeasurements --help + source: atlas api monitoringAndLogs getDatabaseMeasurements --help - label: Go lang: go source: | @@ -49775,7 +49775,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskPartitions --help + source: atlas api monitoringAndLogs listDiskPartitions --help - label: Go lang: go source: | @@ -49857,7 +49857,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskMeasurements --help + source: atlas api monitoringAndLogs listDiskMeasurements --help - label: Go lang: go source: | @@ -49982,7 +49982,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDiskMeasurements --help + source: atlas api monitoringAndLogs getDiskMeasurements --help - label: Go lang: go source: | @@ -50218,7 +50218,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostMeasurements --help + source: atlas api monitoringAndLogs getHostMeasurements --help - label: Go lang: go source: | @@ -50315,7 +50315,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueryNamespaces --help + source: atlas api performanceAdvisor listSlowQueryNamespaces --help - label: Go lang: go source: | @@ -50429,7 +50429,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueries --help + source: atlas api performanceAdvisor listSlowQueries --help - label: Go lang: go source: | @@ -50550,7 +50550,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSuggestedIndexes --help + source: atlas api performanceAdvisor listSuggestedIndexes --help - label: Go lang: go source: | @@ -50623,7 +50623,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport deletePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -50695,7 +50695,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport getPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -50775,7 +50775,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport updatePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -50859,7 +50859,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport createPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -50944,7 +50944,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api loadSampleDataset --help + source: atlas api clusters loadSampleDataset --help - label: Go lang: go source: | @@ -51025,7 +51025,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSampleDatasetLoadStatus --help + source: atlas api clusters getSampleDatasetLoadStatus --help - label: Go lang: go source: | @@ -51097,7 +51097,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessInstances --help + source: atlas api serverlessInstances listServerlessInstances --help - label: Go lang: go source: | @@ -51176,7 +51176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessInstance --help + source: atlas api serverlessInstances createServerlessInstance --help - label: Go lang: go source: | @@ -51263,7 +51263,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackupRestoreJobs --help + source: atlas api cloudBackups listServerlessBackupRestoreJobs --help - label: Go lang: go source: | @@ -51353,7 +51353,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + source: atlas api cloudBackups createServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -51446,7 +51446,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackupRestoreJob --help + source: atlas api cloudBackups getServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -51529,7 +51529,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackups --help + source: atlas api cloudBackups listServerlessBackups --help - label: Go lang: go source: | @@ -51618,7 +51618,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackup --help + source: atlas api cloudBackups getServerlessBackup --help - label: Go lang: go source: | @@ -51696,7 +51696,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessAutoIndexing --help + source: atlas api performanceAdvisor getServerlessAutoIndexing --help - label: Go lang: go source: | @@ -51778,7 +51778,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setServerlessAutoIndexing --help + source: atlas api performanceAdvisor setServerlessAutoIndexing --help - label: Go lang: go source: | @@ -51864,7 +51864,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessInstance --help + source: atlas api serverlessInstances deleteServerlessInstance --help - label: Go lang: go source: | @@ -51945,7 +51945,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessInstance --help + source: atlas api serverlessInstances getServerlessInstance --help - label: Go lang: go source: | @@ -52031,7 +52031,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessInstance --help + source: atlas api serverlessInstances updateServerlessInstance --help - label: Go lang: go source: | @@ -52108,7 +52108,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectSettings --help + source: atlas api projects getProjectSettings --help - label: Go lang: go source: | @@ -52187,7 +52187,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectSettings --help + source: atlas api projects updateProjectSettings --help - label: Go lang: go source: | @@ -52269,7 +52269,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectTeams --help + source: atlas api teams listProjectTeams --help - label: Go lang: go source: | @@ -52355,7 +52355,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addAllTeamsToProject --help + source: atlas api teams addAllTeamsToProject --help - label: Go lang: go source: | @@ -52443,7 +52443,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectTeam --help + source: atlas api teams removeProjectTeam --help - label: Go lang: go source: | @@ -52536,7 +52536,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateTeamRoles --help + source: atlas api teams updateTeamRoles --help - label: Go lang: go source: | @@ -52609,7 +52609,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfiguration --help + source: atlas api ldapConfiguration getLdapconfiguration --help - label: Go lang: go source: | @@ -52689,7 +52689,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api saveLDAPConfiguration --help + source: atlas api ldapConfiguration saveLdapconfiguration --help - label: Go lang: go source: | @@ -52764,7 +52764,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableCustomerManagedX509 --help + source: atlas api x509Authentication disableCustomerManagedX509 --help - label: Go lang: go source: | @@ -52833,7 +52833,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLDAPConfiguration --help + source: atlas api ldapConfiguration deleteLdapconfiguration --help - label: Go lang: go source: | @@ -52911,7 +52911,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyLDAPConfiguration --help + source: atlas api ldapConfiguration verifyLdapconfiguration --help - label: Go lang: go source: | @@ -52993,7 +52993,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfigurationStatus --help + source: atlas api ldapConfiguration getLdapconfigurationStatus --help - label: Go lang: go source: | @@ -53077,7 +53077,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api projects listProjectUsers --help - label: Go lang: go source: | @@ -53157,7 +53157,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api projects removeProjectUser --help - label: Go lang: go source: | @@ -53246,7 +53246,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectRoles --help + source: atlas api projects updateProjectRoles --help - label: Go lang: go source: | @@ -53332,7 +53332,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectByName --help + source: atlas api projects getProjectByName --help - label: Go lang: go source: | @@ -53414,7 +53414,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizations --help + source: atlas api organizations listOrganizations --help - label: Go lang: go source: | @@ -53496,7 +53496,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganization --help + source: atlas api organizations createOrganization --help - label: Go lang: go source: | @@ -53581,7 +53581,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganization --help + source: atlas api organizations deleteOrganization --help - label: Go lang: go source: | @@ -53655,7 +53655,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganization --help + source: atlas api organizations getOrganization --help - label: Go lang: go source: | @@ -53736,7 +53736,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameOrganization --help + source: atlas api organizations renameOrganization --help - label: Go lang: go source: | @@ -53815,7 +53815,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeys --help + source: atlas api programmaticApiKeys listApiKeys --help - label: Go lang: go source: | @@ -53893,7 +53893,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKey --help + source: atlas api programmaticApiKeys createApiKey --help - label: Go lang: go source: | @@ -53978,7 +53978,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKey --help + source: atlas api programmaticApiKeys deleteApiKey --help - label: Go lang: go source: | @@ -54058,7 +54058,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKey --help + source: atlas api programmaticApiKeys getApiKey --help - label: Go lang: go source: | @@ -54147,7 +54147,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKey --help + source: atlas api programmaticApiKeys updateApiKey --help - label: Go lang: go source: | @@ -54235,7 +54235,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeyAccessListsEntries --help + source: atlas api programmaticApiKeys listApiKeyAccessListsEntries --help - label: Go lang: go source: | @@ -54328,7 +54328,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKeyAccessList --help + source: atlas api programmaticApiKeys createApiKeyAccessList --help - label: Go lang: go source: | @@ -54425,7 +54425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKeyAccessListEntry --help + source: atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help - label: Go lang: go source: | @@ -54515,7 +54515,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKeyAccessList --help + source: atlas api programmaticApiKeys getApiKeyAccessList --help - label: Go lang: go source: | @@ -54592,7 +54592,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess --help + source: atlas api invoices createCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -54683,7 +54683,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess_1 --help + source: atlas api invoices createCostExplorerQueryProcess1 --help - label: Go lang: go source: | @@ -54787,7 +54787,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationEvents --help + source: atlas api events listOrganizationEvents --help - label: Go lang: go source: | @@ -54876,7 +54876,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationEvent --help + source: atlas api events getOrganizationEvent --help - label: Go lang: go source: | @@ -54949,7 +54949,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederationSettings --help + source: atlas api federatedAuthentication getFederationSettings --help - label: Go lang: go source: | @@ -55038,7 +55038,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationProjects --help + source: atlas api organizations listOrganizationProjects --help - label: Go lang: go source: | @@ -55119,7 +55119,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationInvitations --help + source: atlas api organizations listOrganizationInvitations --help - label: Go lang: go source: | @@ -55198,7 +55198,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitation --help + source: atlas api organizations updateOrganizationInvitation --help - label: Go lang: go source: | @@ -55281,7 +55281,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationInvitation --help + source: atlas api organizations createOrganizationInvitation --help - label: Go lang: go source: | @@ -55364,7 +55364,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganizationInvitation --help + source: atlas api organizations deleteOrganizationInvitation --help - label: Go lang: go source: | @@ -55444,7 +55444,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationInvitation --help + source: atlas api organizations getOrganizationInvitation --help - label: Go lang: go source: | @@ -55532,7 +55532,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitationById --help + source: atlas api organizations updateOrganizationInvitationById --help - label: Go lang: go source: | @@ -55669,7 +55669,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listInvoices --help + source: atlas api invoices listInvoices --help - label: Go lang: go source: | @@ -55755,7 +55755,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getInvoice --help + source: atlas api invoices getInvoice --help - label: Go lang: go source: | @@ -55842,7 +55842,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadInvoiceCSV --help + source: atlas api invoices downloadInvoiceCsv --help - label: Go lang: go source: | @@ -55913,7 +55913,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPendingInvoices --help + source: atlas api invoices listPendingInvoices --help - label: Go lang: go source: | @@ -55986,7 +55986,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSourceProjects --help + source: atlas api cloudMigrationService listSourceProjects --help - label: Go lang: go source: | @@ -56056,7 +56056,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLinkToken --help + source: atlas api cloudMigrationService deleteLinkToken --help - label: Go lang: go source: | @@ -56133,7 +56133,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLinkToken --help + source: atlas api cloudMigrationService createLinkToken --help - label: Go lang: go source: | @@ -56210,7 +56210,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationSettings --help + source: atlas api organizations getOrganizationSettings --help - label: Go lang: go source: | @@ -56289,7 +56289,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationSettings --help + source: atlas api organizations updateOrganizationSettings --help - label: Go lang: go source: | @@ -56372,7 +56372,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationTeams --help + source: atlas api teams listOrganizationTeams --help - label: Go lang: go source: | @@ -56456,7 +56456,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createTeam --help + source: atlas api teams createTeam --help - label: Go lang: go source: | @@ -56545,7 +56545,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteTeam --help + source: atlas api teams deleteTeam --help - label: Go lang: go source: | @@ -56629,7 +56629,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamById --help + source: atlas api teams getTeamById --help - label: Go lang: go source: | @@ -56722,7 +56722,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameTeam --help + source: atlas api teams renameTeam --help - label: Go lang: go source: | @@ -56815,7 +56815,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api teams listTeamUsers --help - label: Go lang: go source: | @@ -56910,7 +56910,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addTeamUser --help + source: atlas api teams addTeamUser --help - label: Go lang: go source: | @@ -57006,7 +57006,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeTeamUser --help + source: atlas api teams removeTeamUser --help - label: Go lang: go source: | @@ -57088,7 +57088,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamByName --help + source: atlas api teams getTeamByName --help - label: Go lang: go source: | @@ -57164,7 +57164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api organizations listOrganizationUsers --help - label: Go lang: go source: | @@ -57247,7 +57247,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api organizations removeOrganizationUser --help - label: Go lang: go source: | @@ -57336,7 +57336,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationRoles --help + source: atlas api organizations updateOrganizationRoles --help - label: Go lang: go source: | @@ -57422,7 +57422,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUser --help + source: atlas api mongoDbCloudUsers createUser --help - label: Go lang: go source: | @@ -57505,7 +57505,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUser --help + source: atlas api mongoDbCloudUsers getUser --help - label: Go lang: go source: | @@ -57582,7 +57582,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUserByUsername --help + source: atlas api mongoDbCloudUsers getUserByUsername --help - label: Go lang: go source: | 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 ef51ff2314..acace6e979 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 @@ -34879,7 +34879,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "source": "atlas api root getSystemStatus --help" }, { "lang": "go", @@ -34946,7 +34946,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "source": "atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help" }, { "lang": "go", @@ -35019,7 +35019,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "source": "atlas api clusters listClustersForAllProjects --help" }, { "lang": "go", @@ -35092,7 +35092,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "source": "atlas api events listEventTypes --help" }, { "lang": "go", @@ -35156,7 +35156,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "source": "atlas api federatedAuthentication deleteFederationApp --help" }, { "lang": "go", @@ -35232,7 +35232,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "source": "atlas api federatedAuthentication listConnectedOrgConfigs --help" }, { "lang": "go", @@ -35315,7 +35315,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication removeConnectedOrgConfig --help" }, { "lang": "go", @@ -35396,7 +35396,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication getConnectedOrgConfig --help" }, { "lang": "go", @@ -35488,7 +35488,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication updateConnectedOrgConfig --help" }, { "lang": "go", @@ -35561,7 +35561,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "source": "atlas api federatedAuthentication listRoleMappings --help" }, { "lang": "go", @@ -35643,7 +35643,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "source": "atlas api federatedAuthentication createRoleMapping --help" }, { "lang": "go", @@ -35726,7 +35726,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "source": "atlas api federatedAuthentication deleteRoleMapping --help" }, { "lang": "go", @@ -35810,7 +35810,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "source": "atlas api federatedAuthentication getRoleMapping --help" }, { "lang": "go", @@ -35905,7 +35905,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "source": "atlas api federatedAuthentication updateRoleMapping --help" }, { "lang": "go", @@ -36013,7 +36013,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "source": "atlas api federatedAuthentication listIdentityProviders --help" }, { "lang": "go", @@ -36097,7 +36097,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "source": "atlas api federatedAuthentication getIdentityProvider --help" }, { "lang": "go", @@ -36188,7 +36188,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "source": "atlas api federatedAuthentication updateIdentityProvider --help" }, { "lang": "go", @@ -36259,7 +36259,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "source": "atlas api federatedAuthentication getIdentityProviderMetadata --help" }, { "lang": "go", @@ -36335,7 +36335,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "source": "atlas api projects listProjects --help" }, { "lang": "go", @@ -36431,7 +36431,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProject --help" + "source": "atlas api projects createProject --help" }, { "lang": "go", @@ -36515,7 +36515,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "source": "atlas api projects getProjectByName --help" }, { "lang": "go", @@ -36585,7 +36585,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "source": "atlas api projects deleteProject --help" }, { "lang": "go", @@ -36653,7 +36653,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProject --help" + "source": "atlas api projects getProject --help" }, { "lang": "go", @@ -36738,7 +36738,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "source": "atlas api projects updateProject --help" }, { "lang": "go", @@ -36824,7 +36824,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "source": "atlas api projects addUserToProject --help" }, { "lang": "go", @@ -36904,7 +36904,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "source": "atlas api projectIpAccessList listProjectIpAccessLists --help" }, { "lang": "go", @@ -37002,7 +37002,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "source": "atlas api projectIpAccessList createProjectIpAccessList --help" }, { "lang": "go", @@ -37087,7 +37087,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "source": "atlas api projectIpAccessList deleteProjectIpAccessList --help" }, { "lang": "go", @@ -37173,7 +37173,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "source": "atlas api projectIpAccessList getProjectIpList --help" }, { "lang": "go", @@ -37260,7 +37260,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "source": "atlas api projectIpAccessList getProjectIpAccessListStatus --help" }, { "lang": "go", @@ -37336,7 +37336,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "source": "atlas api alertConfigurations listAlertConfigurations --help" }, { "lang": "go", @@ -37415,7 +37415,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "source": "atlas api alertConfigurations createAlertConfiguration --help" }, { "lang": "go", @@ -37495,7 +37495,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "source": "atlas api alertConfigurations deleteAlertConfiguration --help" }, { "lang": "go", @@ -37576,7 +37576,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "source": "atlas api alertConfigurations getAlertConfiguration --help" }, { "lang": "go", @@ -37668,7 +37668,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "source": "atlas api alertConfigurations toggleAlertConfiguration --help" }, { "lang": "go", @@ -37763,7 +37763,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "source": "atlas api alertConfigurations updateAlertConfiguration --help" }, { "lang": "go", @@ -37855,7 +37855,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "source": "atlas api alerts listAlertsByAlertConfigurationId --help" }, { "lang": "go", @@ -37947,7 +37947,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "source": "atlas api alerts listAlerts --help" }, { "lang": "go", @@ -38029,7 +38029,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "source": "atlas api alerts getAlert --help" }, { "lang": "go", @@ -38124,7 +38124,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "source": "atlas api alerts acknowledgeAlert --help" }, { "lang": "go", @@ -38216,7 +38216,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "source": "atlas api alertConfigurations listAlertConfigurationsByAlertId --help" }, { "lang": "go", @@ -38296,7 +38296,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "source": "atlas api programmaticApiKeys listProjectApiKeys --help" }, { "lang": "go", @@ -38372,7 +38372,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "source": "atlas api programmaticApiKeys createProjectApiKey --help" }, { "lang": "go", @@ -38458,7 +38458,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "source": "atlas api programmaticApiKeys removeProjectApiKey --help" }, { "lang": "go", @@ -38558,7 +38558,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "source": "atlas api programmaticApiKeys updateApiKeyRoles --help" }, { "lang": "go", @@ -38649,7 +38649,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "source": "atlas api programmaticApiKeys addProjectApiKey --help" }, { "lang": "go", @@ -38716,7 +38716,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "source": "atlas api auditing getAuditingConfiguration --help" }, { "lang": "go", @@ -38795,7 +38795,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "source": "atlas api auditing updateAuditingConfiguration --help" }, { "lang": "go", @@ -38862,7 +38862,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "source": "atlas api awsClustersDns getAwscustomDns --help" }, { "lang": "go", @@ -38938,7 +38938,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "source": "atlas api awsClustersDns toggleAwscustomDns --help" }, { "lang": "go", @@ -39015,7 +39015,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "source": "atlas api cloudBackups listExportBuckets --help" }, { "lang": "go", @@ -39101,7 +39101,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "source": "atlas api cloudBackups createExportBucket --help" }, { "lang": "go", @@ -39185,7 +39185,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "source": "atlas api cloudBackups deleteExportBucket --help" }, { "lang": "go", @@ -39264,7 +39264,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "source": "atlas api cloudBackups getExportBucket --help" }, { "lang": "go", @@ -39336,7 +39336,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "source": "atlas api cloudBackups getDataProtectionSettings --help" }, { "lang": "go", @@ -39431,7 +39431,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "source": "atlas api cloudBackups updateDataProtectionSettings --help" }, { "lang": "go", @@ -39499,7 +39499,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "source": "atlas api cloudProviderAccess listCloudProviderAccessRoles --help" }, { "lang": "go", @@ -39579,7 +39579,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess createCloudProviderAccessRole --help" }, { "lang": "go", @@ -39670,7 +39670,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -39749,7 +39749,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess getCloudProviderAccessRole --help" }, { "lang": "go", @@ -39847,7 +39847,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -39933,7 +39933,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "source": "atlas api clusters listClusters --help" }, { "lang": "go", @@ -40023,7 +40023,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "source": "atlas api clusters createCluster --help" }, { "lang": "go", @@ -40119,7 +40119,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "source": "atlas api clusters listCloudProviderRegions --help" }, { "lang": "go", @@ -40209,7 +40209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "source": "atlas api clusters upgradeSharedCluster --help" }, { "lang": "go", @@ -40299,7 +40299,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "source": "atlas api clusters upgradeSharedClusterToServerless --help" }, { "lang": "go", @@ -40392,7 +40392,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "source": "atlas api clusters deleteCluster --help" }, { "lang": "go", @@ -40476,7 +40476,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "source": "atlas api clusters getCluster --help" }, { "lang": "go", @@ -40575,7 +40575,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "source": "atlas api clusters updateCluster --help" }, { "lang": "go", @@ -40664,7 +40664,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "source": "atlas api cloudBackups listBackupExportJobs --help" }, { "lang": "go", @@ -40758,7 +40758,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "source": "atlas api cloudBackups createBackupExportJob --help" }, { "lang": "go", @@ -40843,7 +40843,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "source": "atlas api cloudBackups getBackupExportJob --help" }, { "lang": "go", @@ -40931,7 +40931,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "source": "atlas api cloudBackups listBackupRestoreJobs --help" }, { "lang": "go", @@ -41028,7 +41028,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "source": "atlas api cloudBackups createBackupRestoreJob --help" }, { "lang": "go", @@ -41122,7 +41122,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "source": "atlas api cloudBackups cancelBackupRestoreJob --help" }, { "lang": "go", @@ -41211,7 +41211,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "source": "atlas api cloudBackups getBackupRestoreJob --help" }, { "lang": "go", @@ -41291,7 +41291,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "source": "atlas api cloudBackups deleteAllBackupSchedules --help" }, { "lang": "go", @@ -41370,7 +41370,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "source": "atlas api cloudBackups getBackupSchedule --help" }, { "lang": "go", @@ -41463,7 +41463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "source": "atlas api cloudBackups updateBackupSchedule --help" }, { "lang": "go", @@ -41555,7 +41555,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "source": "atlas api cloudBackups listReplicaSetBackups --help" }, { "lang": "go", @@ -41646,7 +41646,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "source": "atlas api cloudBackups takeSnapshot --help" }, { "lang": "go", @@ -41737,7 +41737,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "source": "atlas api cloudBackups deleteShardedClusterBackup --help" }, { "lang": "go", @@ -41829,7 +41829,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "source": "atlas api cloudBackups getShardedClusterBackup --help" }, { "lang": "go", @@ -41911,7 +41911,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "source": "atlas api cloudBackups listShardedClusterBackups --help" }, { "lang": "go", @@ -42005,7 +42005,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "source": "atlas api cloudBackups deleteReplicaSetBackup --help" }, { "lang": "go", @@ -42097,7 +42097,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "source": "atlas api cloudBackups getReplicaSetBackup --help" }, { "lang": "go", @@ -42200,7 +42200,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "source": "atlas api cloudBackups updateSnapshotRetention --help" }, { "lang": "go", @@ -42302,7 +42302,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots downloadSharedClusterBackup --help" }, { "lang": "go", @@ -42401,7 +42401,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -42483,7 +42483,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "source": "atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help" }, { "lang": "go", @@ -42577,7 +42577,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -42659,7 +42659,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "source": "atlas api sharedTierSnapshots listSharedClusterBackups --help" }, { "lang": "go", @@ -42753,7 +42753,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots getSharedClusterBackup --help" }, { "lang": "go", @@ -42842,7 +42842,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "source": "atlas api legacyBackup listLegacyBackupCheckpoints --help" }, { "lang": "go", @@ -42940,7 +42940,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "source": "atlas api legacyBackup getLegacyBackupCheckpoint --help" }, { "lang": "go", @@ -43041,7 +43041,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch createAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43147,7 +43147,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesDeprecated --help" }, { "lang": "go", @@ -43247,7 +43247,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43342,7 +43342,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch getAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43454,7 +43454,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43539,7 +43539,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "source": "atlas api globalClusters getManagedNamespace --help" }, { "lang": "go", @@ -43624,7 +43624,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "source": "atlas api globalClusters deleteAllCustomZoneMappings --help" }, { "lang": "go", @@ -43721,7 +43721,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "source": "atlas api globalClusters createCustomZoneMapping --help" }, { "lang": "go", @@ -43825,7 +43825,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "source": "atlas api globalClusters deleteManagedNamespace --help" }, { "lang": "go", @@ -43925,7 +43925,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "source": "atlas api globalClusters createManagedNamespace --help" }, { "lang": "go", @@ -44111,7 +44111,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "source": "atlas api rollingIndex createRollingIndex --help" }, { "lang": "go", @@ -44203,7 +44203,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "source": "atlas api onlineArchive listOnlineArchives --help" }, { "lang": "go", @@ -44304,7 +44304,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "source": "atlas api onlineArchive createOnlineArchive --help" }, { "lang": "go", @@ -44423,7 +44423,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "source": "atlas api onlineArchive downloadOnlineArchiveQueryLogs --help" }, { "lang": "go", @@ -44521,7 +44521,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "source": "atlas api onlineArchive deleteOnlineArchive --help" }, { "lang": "go", @@ -44620,7 +44620,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "source": "atlas api onlineArchive getOnlineArchive --help" }, { "lang": "go", @@ -44733,7 +44733,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "source": "atlas api onlineArchive updateOnlineArchive --help" }, { "lang": "go", @@ -44822,7 +44822,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "source": "atlas api clusterOutageSimulation endOutageSimulation --help" }, { "lang": "go", @@ -44909,7 +44909,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "source": "atlas api clusterOutageSimulation getOutageSimulation --help" }, { "lang": "go", @@ -45004,7 +45004,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "source": "atlas api clusterOutageSimulation startOutageSimulation --help" }, { "lang": "go", @@ -45091,7 +45091,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "source": "atlas api clusters getClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -45192,7 +45192,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "source": "atlas api clusters updateClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -45269,7 +45269,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "source": "atlas api clusters testFailover --help" }, { "lang": "go", @@ -45372,7 +45372,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "source": "atlas api legacyBackup listLegacyBackupRestoreJobs --help" }, { "lang": "go", @@ -45464,7 +45464,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup createLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -45559,7 +45559,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup getLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -45642,7 +45642,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "source": "atlas api atlasSearch deleteAtlasSearchDeployment --help" }, { "lang": "go", @@ -45724,7 +45724,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "source": "atlas api atlasSearch getAtlasSearchDeployment --help" }, { "lang": "go", @@ -45820,7 +45820,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "source": "atlas api atlasSearch updateAtlasSearchDeployment --help" }, { "lang": "go", @@ -45916,7 +45916,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "source": "atlas api atlasSearch createAtlasSearchDeployment --help" }, { "lang": "go", @@ -45997,7 +45997,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup getLegacySnapshotSchedule --help" }, { "lang": "go", @@ -46086,7 +46086,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup updateLegacySnapshotSchedule --help" }, { "lang": "go", @@ -46189,7 +46189,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "source": "atlas api legacyBackup listLegacySnapshots --help" }, { "lang": "go", @@ -46284,7 +46284,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "source": "atlas api legacyBackup deleteLegacySnapshot --help" }, { "lang": "go", @@ -46374,7 +46374,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "source": "atlas api legacyBackup getLegacySnapshot --help" }, { "lang": "go", @@ -46475,7 +46475,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "source": "atlas api legacyBackup updateLegacySnapshotRetention --help" }, { "lang": "go", @@ -46554,7 +46554,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "source": "atlas api clusters getClusterStatus --help" }, { "lang": "go", @@ -46681,7 +46681,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "source": "atlas api monitoringAndLogs getHostLogs --help" }, { "lang": "go", @@ -46775,7 +46775,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "source": "atlas api networkPeering listPeeringContainerByCloudProvider --help" }, { "lang": "go", @@ -46863,7 +46863,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "source": "atlas api networkPeering createPeeringContainer --help" }, { "lang": "go", @@ -46939,7 +46939,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "source": "atlas api networkPeering listPeeringContainers --help" }, { "lang": "go", @@ -47028,7 +47028,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "source": "atlas api networkPeering deletePeeringContainer --help" }, { "lang": "go", @@ -47106,7 +47106,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "source": "atlas api networkPeering getPeeringContainer --help" }, { "lang": "go", @@ -47207,7 +47207,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "source": "atlas api networkPeering updatePeeringContainer --help" }, { "lang": "go", @@ -47277,7 +47277,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "source": "atlas api customDatabaseRoles listCustomDatabaseRoles --help" }, { "lang": "go", @@ -47365,7 +47365,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles createCustomDatabaseRole --help" }, { "lang": "go", @@ -47447,7 +47447,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles deleteCustomDatabaseRole --help" }, { "lang": "go", @@ -47524,7 +47524,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles getCustomDatabaseRole --help" }, { "lang": "go", @@ -47621,7 +47621,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles updateCustomDatabaseRole --help" }, { "lang": "go", @@ -47704,7 +47704,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "source": "atlas api dataFederation listFederatedDatabases --help" }, { "lang": "go", @@ -47789,7 +47789,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "source": "atlas api dataFederation createFederatedDatabase --help" }, { "lang": "go", @@ -47865,7 +47865,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "source": "atlas api dataFederation deleteFederatedDatabase --help" }, { "lang": "go", @@ -47942,7 +47942,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "source": "atlas api dataFederation getFederatedDatabase --help" }, { "lang": "go", @@ -48039,7 +48039,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "source": "atlas api dataFederation updateFederatedDatabase --help" }, { "lang": "go", @@ -48121,7 +48121,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimits --help" }, { "lang": "go", @@ -48209,7 +48209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "source": "atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "go", @@ -48298,7 +48298,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimit --help" }, { "lang": "go", @@ -48401,7 +48401,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "source": "atlas api dataFederation createOneDataFederationQueryLimit --help" }, { "lang": "go", @@ -48507,7 +48507,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "source": "atlas api dataFederation downloadFederatedDatabaseQueryLogs --help" }, { "lang": "go", @@ -48583,7 +48583,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "source": "atlas api databaseUsers listDatabaseUsers --help" }, { "lang": "go", @@ -48823,7 +48823,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "source": "atlas api databaseUsers createDatabaseUser --help" }, { "lang": "go", @@ -48915,7 +48915,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "source": "atlas api databaseUsers deleteDatabaseUser --help" }, { "lang": "go", @@ -49002,7 +49002,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "source": "atlas api databaseUsers getDatabaseUser --help" }, { "lang": "go", @@ -49109,7 +49109,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "source": "atlas api databaseUsers updateDatabaseUser --help" }, { "lang": "go", @@ -49197,7 +49197,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "source": "atlas api x509Authentication listDatabaseUserCertificates --help" }, { "lang": "go", @@ -49299,7 +49299,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "source": "atlas api x509Authentication createDatabaseUserCertificate --help" }, { "lang": "go", @@ -49432,7 +49432,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "source": "atlas api accessTracking listAccessLogsByClusterName --help" }, { "lang": "go", @@ -49562,7 +49562,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "source": "atlas api accessTracking listAccessLogsByHostname --help" }, { "lang": "go", @@ -49629,7 +49629,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help" }, { "lang": "go", @@ -49714,7 +49714,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help" }, { "lang": "go", @@ -49793,7 +49793,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "go", @@ -49881,7 +49881,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -49983,7 +49983,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "go", @@ -50072,7 +50072,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -50215,7 +50215,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "source": "atlas api events listProjectEvents --help" }, { "lang": "go", @@ -50306,7 +50306,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "source": "atlas api events getProjectEvent --help" }, { "lang": "go", @@ -50376,7 +50376,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "source": "atlas api monitoringAndLogs listMetricTypes --help" }, { "lang": "go", @@ -50492,7 +50492,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "source": "atlas api monitoringAndLogs listIndexMetrics --help" }, { "lang": "go", @@ -50611,7 +50611,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "source": "atlas api monitoringAndLogs getIndexMetrics --help" }, { "lang": "go", @@ -50722,7 +50722,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "source": "atlas api monitoringAndLogs getMeasurements --help" }, { "lang": "go", @@ -50804,7 +50804,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "source": "atlas api thirdPartyIntegrations listThirdPartyIntegrations --help" }, { "lang": "go", @@ -50899,7 +50899,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help" }, { "lang": "go", @@ -50992,7 +50992,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations getThirdPartyIntegration --help" }, { "lang": "go", @@ -51108,7 +51108,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations createThirdPartyIntegration --help" }, { "lang": "go", @@ -51221,7 +51221,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations updateThirdPartyIntegration --help" }, { "lang": "go", @@ -51301,7 +51301,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "source": "atlas api projects listProjectInvitations --help" }, { "lang": "go", @@ -51385,7 +51385,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "source": "atlas api projects updateProjectInvitation --help" }, { "lang": "go", @@ -51463,7 +51463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "source": "atlas api projects createProjectInvitation --help" }, { "lang": "go", @@ -51541,7 +51541,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "source": "atlas api projects deleteProjectInvitation --help" }, { "lang": "go", @@ -51623,7 +51623,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "source": "atlas api projects getProjectInvitation --help" }, { "lang": "go", @@ -51716,7 +51716,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "source": "atlas api projects updateProjectInvitationById --help" }, { "lang": "go", @@ -51787,7 +51787,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "source": "atlas api projects returnAllIpaddresses --help" }, { "lang": "go", @@ -51866,7 +51866,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "source": "atlas api projects listProjectLimits --help" }, { "lang": "go", @@ -51963,7 +51963,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "source": "atlas api projects deleteProjectLimit --help" }, { "lang": "go", @@ -52061,7 +52061,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "source": "atlas api projects getProjectLimit --help" }, { "lang": "go", @@ -52170,7 +52170,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "source": "atlas api projects setProjectLimit --help" }, { "lang": "go", @@ -52260,7 +52260,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "source": "atlas api cloudMigrationService createPushMigration --help" }, { "lang": "go", @@ -52351,7 +52351,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "source": "atlas api cloudMigrationService validateMigration --help" }, { "lang": "go", @@ -52438,7 +52438,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "source": "atlas api cloudMigrationService getValidationStatus --help" }, { "lang": "go", @@ -52514,7 +52514,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "source": "atlas api cloudMigrationService getPushMigration --help" }, { "lang": "go", @@ -52590,7 +52590,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "source": "atlas api cloudMigrationService cutoverMigration --help" }, { "lang": "go", @@ -52654,7 +52654,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "source": "atlas api maintenanceWindows resetMaintenanceWindow --help" }, { "lang": "go", @@ -52719,7 +52719,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "source": "atlas api maintenanceWindows getMaintenanceWindow --help" }, { "lang": "go", @@ -52795,7 +52795,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "source": "atlas api maintenanceWindows updateMaintenanceWindow --help" }, { "lang": "go", @@ -52859,7 +52859,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "source": "atlas api maintenanceWindows toggleMaintenanceAutoDefer --help" }, { "lang": "go", @@ -52923,7 +52923,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "source": "atlas api maintenanceWindows deferMaintenanceWindow --help" }, { "lang": "go", @@ -52990,7 +52990,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "source": "atlas api performanceAdvisor getManagedSlowMs --help" }, { "lang": "go", @@ -53057,7 +53057,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor disableSlowOperationThresholding --help" }, { "lang": "go", @@ -53124,7 +53124,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor enableSlowOperationThresholding --help" }, { "lang": "go", @@ -53252,7 +53252,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "source": "atlas api projects getProjectLtsversions --help" }, { "lang": "go", @@ -53345,7 +53345,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "source": "atlas api networkPeering listPeeringConnections --help" }, { "lang": "go", @@ -53434,7 +53434,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "source": "atlas api networkPeering createPeeringConnection --help" }, { "lang": "go", @@ -53516,7 +53516,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "source": "atlas api networkPeering deletePeeringConnection --help" }, { "lang": "go", @@ -53596,7 +53596,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "source": "atlas api networkPeering getPeeringConnection --help" }, { "lang": "go", @@ -53693,7 +53693,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "source": "atlas api networkPeering updatePeeringConnection --help" }, { "lang": "go", @@ -53763,7 +53763,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "source": "atlas api dataLakePipelines listPipelines --help" }, { "lang": "go", @@ -53842,7 +53842,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "source": "atlas api dataLakePipelines createPipeline --help" }, { "lang": "go", @@ -53921,7 +53921,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "source": "atlas api dataLakePipelines deletePipeline --help" }, { "lang": "go", @@ -54001,7 +54001,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "source": "atlas api dataLakePipelines getPipeline --help" }, { "lang": "go", @@ -54095,7 +54095,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "source": "atlas api dataLakePipelines updatePipeline --help" }, { "lang": "go", @@ -54180,7 +54180,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "source": "atlas api dataLakePipelines listPipelineSchedules --help" }, { "lang": "go", @@ -54281,7 +54281,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "source": "atlas api dataLakePipelines listPipelineSnapshots --help" }, { "lang": "go", @@ -54363,7 +54363,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "source": "atlas api dataLakePipelines pausePipeline --help" }, { "lang": "go", @@ -54445,7 +54445,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "source": "atlas api dataLakePipelines resumePipeline --help" }, { "lang": "go", @@ -54546,7 +54546,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "source": "atlas api dataLakePipelines listPipelineRuns --help" }, { "lang": "go", @@ -54641,7 +54641,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "source": "atlas api dataLakePipelines deletePipelineRunDataset --help" }, { "lang": "go", @@ -54734,7 +54734,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "source": "atlas api dataLakePipelines getPipelineRun --help" }, { "lang": "go", @@ -54827,7 +54827,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "source": "atlas api dataLakePipelines triggerSnapshotIngestion --help" }, { "lang": "go", @@ -54909,7 +54909,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "source": "atlas api privateEndpointServices createPrivateEndpointService --help" }, { "lang": "go", @@ -54979,7 +54979,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -55058,7 +55058,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -55139,7 +55139,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "source": "atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help" }, { "lang": "go", @@ -55230,7 +55230,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -55320,7 +55320,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -55408,7 +55408,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -55507,7 +55507,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -55592,7 +55592,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "source": "atlas api privateEndpointServices listPrivateEndpointServices --help" }, { "lang": "go", @@ -55686,7 +55686,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "source": "atlas api privateEndpointServices deletePrivateEndpointService --help" }, { "lang": "go", @@ -55781,7 +55781,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "source": "atlas api privateEndpointServices getPrivateEndpointService --help" }, { "lang": "go", @@ -55895,7 +55895,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "source": "atlas api privateEndpointServices createPrivateEndpoint --help" }, { "lang": "go", @@ -55999,7 +55999,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "source": "atlas api privateEndpointServices deletePrivateEndpoint --help" }, { "lang": "go", @@ -56104,7 +56104,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "source": "atlas api privateEndpointServices getPrivateEndpoint --help" }, { "lang": "go", @@ -56176,7 +56176,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "source": "atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "go", @@ -56260,7 +56260,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "source": "atlas api networkPeering disablePeering --help" }, { "lang": "go", @@ -56342,7 +56342,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "source": "atlas api dataFederation listDataFederationPrivateEndpoints --help" }, { "lang": "go", @@ -56421,7 +56421,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation createDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -56503,7 +56503,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation deleteDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -56586,7 +56586,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation getDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -56662,7 +56662,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "source": "atlas api monitoringAndLogs listAtlasProcesses --help" }, { "lang": "go", @@ -56740,7 +56740,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "source": "atlas api monitoringAndLogs getAtlasProcess --help" }, { "lang": "go", @@ -56827,7 +56827,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "source": "atlas api monitoringAndLogs listDatabases --help" }, { "lang": "go", @@ -56914,7 +56914,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "source": "atlas api monitoringAndLogs getDatabase --help" }, { "lang": "go", @@ -57040,7 +57040,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "source": "atlas api monitoringAndLogs getDatabaseMeasurements --help" }, { "lang": "go", @@ -57127,7 +57127,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "source": "atlas api monitoringAndLogs listDiskPartitions --help" }, { "lang": "go", @@ -57211,7 +57211,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "source": "atlas api monitoringAndLogs listDiskMeasurements --help" }, { "lang": "go", @@ -57346,7 +57346,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "source": "atlas api monitoringAndLogs getDiskMeasurements --help" }, { "lang": "go", @@ -57588,7 +57588,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "source": "atlas api monitoringAndLogs getHostMeasurements --help" }, { "lang": "go", @@ -57684,7 +57684,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "source": "atlas api performanceAdvisor listSlowQueryNamespaces --help" }, { "lang": "go", @@ -57804,7 +57804,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "source": "atlas api performanceAdvisor listSlowQueries --help" }, { "lang": "go", @@ -57940,7 +57940,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "source": "atlas api performanceAdvisor listSuggestedIndexes --help" }, { "lang": "go", @@ -58013,7 +58013,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport deletePushBasedLogConfiguration --help" }, { "lang": "go", @@ -58084,7 +58084,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport getPushBasedLogConfiguration --help" }, { "lang": "go", @@ -58167,7 +58167,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport updatePushBasedLogConfiguration --help" }, { "lang": "go", @@ -58250,7 +58250,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport createPushBasedLogConfiguration --help" }, { "lang": "go", @@ -58332,7 +58332,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "source": "atlas api clusters loadSampleDataset --help" }, { "lang": "go", @@ -58408,7 +58408,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "source": "atlas api clusters getSampleDatasetLoadStatus --help" }, { "lang": "go", @@ -58484,7 +58484,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "source": "atlas api serverlessInstances listServerlessInstances --help" }, { "lang": "go", @@ -58566,7 +58566,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "source": "atlas api serverlessInstances createServerlessInstance --help" }, { "lang": "go", @@ -58657,7 +58657,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "source": "atlas api cloudBackups listServerlessBackupRestoreJobs --help" }, { "lang": "go", @@ -58754,7 +58754,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups createServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -58848,7 +58848,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups getServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -58939,7 +58939,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "source": "atlas api cloudBackups listServerlessBackups --help" }, { "lang": "go", @@ -59031,7 +59031,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "source": "atlas api cloudBackups getServerlessBackup --help" }, { "lang": "go", @@ -59110,7 +59110,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor getServerlessAutoIndexing --help" }, { "lang": "go", @@ -59193,7 +59193,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor setServerlessAutoIndexing --help" }, { "lang": "go", @@ -59278,7 +59278,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "source": "atlas api serverlessInstances deleteServerlessInstance --help" }, { "lang": "go", @@ -59361,7 +59361,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "source": "atlas api serverlessInstances getServerlessInstance --help" }, { "lang": "go", @@ -59452,7 +59452,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "source": "atlas api serverlessInstances updateServerlessInstance --help" }, { "lang": "go", @@ -59525,7 +59525,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "source": "atlas api projects getProjectSettings --help" }, { "lang": "go", @@ -59607,7 +59607,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "source": "atlas api projects updateProjectSettings --help" }, { "lang": "go", @@ -59680,7 +59680,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "source": "atlas api streams listStreamInstances --help" }, { "lang": "go", @@ -59759,7 +59759,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "source": "atlas api streams createStreamInstance --help" }, { "lang": "go", @@ -59841,7 +59841,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "source": "atlas api streams deleteStreamInstance --help" }, { "lang": "go", @@ -59926,7 +59926,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "source": "atlas api streams getStreamInstance --help" }, { "lang": "go", @@ -60020,7 +60020,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "source": "atlas api streams updateStreamInstance --help" }, { "lang": "go", @@ -60129,7 +60129,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "source": "atlas api streams downloadStreamTenantAuditLogs --help" }, { "lang": "go", @@ -60214,7 +60214,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "source": "atlas api streams listStreamConnections --help" }, { "lang": "go", @@ -60305,7 +60305,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "source": "atlas api streams createStreamConnection --help" }, { "lang": "go", @@ -60396,7 +60396,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "source": "atlas api streams deleteStreamConnection --help" }, { "lang": "go", @@ -60479,7 +60479,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "source": "atlas api streams getStreamConnection --help" }, { "lang": "go", @@ -60582,7 +60582,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "source": "atlas api streams updateStreamConnection --help" }, { "lang": "go", @@ -60667,7 +60667,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "source": "atlas api teams listProjectTeams --help" }, { "lang": "go", @@ -60759,7 +60759,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "source": "atlas api teams addAllTeamsToProject --help" }, { "lang": "go", @@ -60845,7 +60845,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "source": "atlas api teams removeProjectTeam --help" }, { "lang": "go", @@ -60946,7 +60946,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "source": "atlas api teams updateTeamRoles --help" }, { "lang": "go", @@ -61013,7 +61013,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "source": "atlas api ldapConfiguration getLdapconfiguration --help" }, { "lang": "go", @@ -61092,7 +61092,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "source": "atlas api ldapConfiguration saveLdapconfiguration --help" }, { "lang": "go", @@ -61156,7 +61156,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "source": "atlas api x509Authentication disableCustomerManagedX509 --help" }, { "lang": "go", @@ -61223,7 +61223,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "source": "atlas api ldapConfiguration deleteLdapconfiguration --help" }, { "lang": "go", @@ -61304,7 +61304,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "source": "atlas api ldapConfiguration verifyLdapconfiguration --help" }, { "lang": "go", @@ -61383,7 +61383,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "source": "atlas api ldapConfiguration getLdapconfigurationStatus --help" }, { "lang": "go", @@ -61477,7 +61477,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "source": "atlas api projects listProjectUsers --help" }, { "lang": "go", @@ -61559,7 +61559,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "source": "atlas api projects removeProjectUser --help" }, { "lang": "go", @@ -61655,7 +61655,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "source": "atlas api projects updateProjectRoles --help" }, { "lang": "go", @@ -61745,7 +61745,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "source": "atlas api organizations listOrganizations --help" }, { "lang": "go", @@ -61830,7 +61830,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "source": "atlas api organizations createOrganization --help" }, { "lang": "go", @@ -61906,7 +61906,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "source": "atlas api organizations deleteOrganization --help" }, { "lang": "go", @@ -61980,7 +61980,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "source": "atlas api organizations getOrganization --help" }, { "lang": "go", @@ -62065,7 +62065,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "source": "atlas api organizations renameOrganization --help" }, { "lang": "go", @@ -62145,7 +62145,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "source": "atlas api programmaticApiKeys listApiKeys --help" }, { "lang": "go", @@ -62225,7 +62225,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "source": "atlas api programmaticApiKeys createApiKey --help" }, { "lang": "go", @@ -62308,7 +62308,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "source": "atlas api programmaticApiKeys deleteApiKey --help" }, { "lang": "go", @@ -62389,7 +62389,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "source": "atlas api programmaticApiKeys getApiKey --help" }, { "lang": "go", @@ -62484,7 +62484,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "source": "atlas api programmaticApiKeys updateApiKey --help" }, { "lang": "go", @@ -62576,7 +62576,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "source": "atlas api programmaticApiKeys listApiKeyAccessListsEntries --help" }, { "lang": "go", @@ -62682,7 +62682,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys createApiKeyAccessList --help" }, { "lang": "go", @@ -62782,7 +62782,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "source": "atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help" }, { "lang": "go", @@ -62877,7 +62877,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys getApiKeyAccessList --help" }, { "lang": "go", @@ -62955,7 +62955,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "source": "atlas api invoices createCostExplorerQueryProcess --help" }, { "lang": "go", @@ -63046,7 +63046,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "source": "atlas api invoices createCostExplorerQueryProcess1 --help" }, { "lang": "go", @@ -63161,7 +63161,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "source": "atlas api events listOrganizationEvents --help" }, { "lang": "go", @@ -63252,7 +63252,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "source": "atlas api events getOrganizationEvent --help" }, { "lang": "go", @@ -63325,7 +63325,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "source": "atlas api federatedAuthentication getFederationSettings --help" }, { "lang": "go", @@ -63415,7 +63415,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "source": "atlas api organizations listOrganizationProjects --help" }, { "lang": "go", @@ -63500,7 +63500,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "source": "atlas api organizations listOrganizationInvitations --help" }, { "lang": "go", @@ -63582,7 +63582,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "source": "atlas api organizations updateOrganizationInvitation --help" }, { "lang": "go", @@ -63664,7 +63664,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "source": "atlas api organizations createOrganizationInvitation --help" }, { "lang": "go", @@ -63746,7 +63746,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "source": "atlas api organizations deleteOrganizationInvitation --help" }, { "lang": "go", @@ -63826,7 +63826,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "source": "atlas api organizations getOrganizationInvitation --help" }, { "lang": "go", @@ -63920,7 +63920,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "source": "atlas api organizations updateOrganizationInvitationById --help" }, { "lang": "go", @@ -64078,7 +64078,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "source": "atlas api invoices listInvoices --help" }, { "lang": "go", @@ -64148,7 +64148,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "source": "atlas api invoices listPendingInvoices --help" }, { "lang": "go", @@ -64236,7 +64236,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "source": "atlas api invoices getInvoice --help" }, { "lang": "go", @@ -64317,7 +64317,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "source": "atlas api invoices downloadInvoiceCsv --help" }, { "lang": "go", @@ -64390,7 +64390,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "source": "atlas api cloudMigrationService listSourceProjects --help" }, { "lang": "go", @@ -64457,7 +64457,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "source": "atlas api cloudMigrationService deleteLinkToken --help" }, { "lang": "go", @@ -64536,7 +64536,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "source": "atlas api cloudMigrationService createLinkToken --help" }, { "lang": "go", @@ -64609,7 +64609,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "source": "atlas api organizations getOrganizationSettings --help" }, { "lang": "go", @@ -64691,7 +64691,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "source": "atlas api organizations updateOrganizationSettings --help" }, { "lang": "go", @@ -64777,7 +64777,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "source": "atlas api teams listOrganizationTeams --help" }, { "lang": "go", @@ -64866,7 +64866,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "source": "atlas api teams createTeam --help" }, { "lang": "go", @@ -64952,7 +64952,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "source": "atlas api teams getTeamByName --help" }, { "lang": "go", @@ -65041,7 +65041,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "source": "atlas api teams deleteTeam --help" }, { "lang": "go", @@ -65128,7 +65128,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "source": "atlas api teams getTeamById --help" }, { "lang": "go", @@ -65229,7 +65229,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "source": "atlas api teams renameTeam --help" }, { "lang": "go", @@ -65327,7 +65327,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "source": "atlas api teams listTeamUsers --help" }, { "lang": "go", @@ -65431,7 +65431,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "source": "atlas api teams addTeamUser --help" }, { "lang": "go", @@ -65529,7 +65529,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "source": "atlas api teams removeTeamUser --help" }, { "lang": "go", @@ -65611,7 +65611,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "source": "atlas api organizations listOrganizationUsers --help" }, { "lang": "go", @@ -65696,7 +65696,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "source": "atlas api organizations removeOrganizationUser --help" }, { "lang": "go", @@ -65792,7 +65792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "source": "atlas api organizations updateOrganizationRoles --help" }, { "lang": "go", @@ -65870,7 +65870,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUser --help" + "source": "atlas api mongoDbCloudUsers createUser --help" }, { "lang": "go", @@ -65947,7 +65947,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "source": "atlas api mongoDbCloudUsers getUserByUsername --help" }, { "lang": "go", @@ -66026,7 +66026,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUser --help" + "source": "atlas api mongoDbCloudUsers getUser --help" }, { "lang": "go", 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 f91a40d4c7..7f4362c31d 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 @@ -28659,7 +28659,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSystemStatus --help + source: atlas api root getSystemStatus --help - label: Go lang: go source: | @@ -28729,7 +28729,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help + source: atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help - label: Go lang: go source: | @@ -28800,7 +28800,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClustersForAllProjects --help + source: atlas api clusters listClustersForAllProjects --help - label: Go lang: go source: | @@ -28871,7 +28871,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listEventTypes --help + source: atlas api events listEventTypes --help - label: Go lang: go source: | @@ -28940,7 +28940,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederationApp --help + source: atlas api federatedAuthentication deleteFederationApp --help - label: Go lang: go source: | @@ -29014,7 +29014,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listConnectedOrgConfigs --help + source: atlas api federatedAuthentication listConnectedOrgConfigs --help - label: Go lang: go source: | @@ -29096,7 +29096,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeConnectedOrgConfig --help + source: atlas api federatedAuthentication removeConnectedOrgConfig --help - label: Go lang: go source: | @@ -29177,7 +29177,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getConnectedOrgConfig --help + source: atlas api federatedAuthentication getConnectedOrgConfig --help - label: Go lang: go source: | @@ -29265,7 +29265,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateConnectedOrgConfig --help + source: atlas api federatedAuthentication updateConnectedOrgConfig --help - label: Go lang: go source: | @@ -29342,7 +29342,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listRoleMappings --help + source: atlas api federatedAuthentication listRoleMappings --help - label: Go lang: go source: | @@ -29421,7 +29421,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRoleMapping --help + source: atlas api federatedAuthentication createRoleMapping --help - label: Go lang: go source: | @@ -29506,7 +29506,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteRoleMapping --help + source: atlas api federatedAuthentication deleteRoleMapping --help - label: Go lang: go source: | @@ -29588,7 +29588,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRoleMapping --help + source: atlas api federatedAuthentication getRoleMapping --help - label: Go lang: go source: | @@ -29677,7 +29677,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateRoleMapping --help + source: atlas api federatedAuthentication updateRoleMapping --help - label: Go lang: go source: | @@ -29777,7 +29777,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIdentityProviders --help + source: atlas api federatedAuthentication listIdentityProviders --help - label: Go lang: go source: | @@ -29859,7 +29859,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProvider --help + source: atlas api federatedAuthentication getIdentityProvider --help - label: Go lang: go source: | @@ -29949,7 +29949,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateIdentityProvider --help + source: atlas api federatedAuthentication updateIdentityProvider --help - label: Go lang: go source: | @@ -30026,7 +30026,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProviderMetadata --help + source: atlas api federatedAuthentication getIdentityProviderMetadata --help - label: Go lang: go source: | @@ -30099,7 +30099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjects --help + source: atlas api projects listProjects --help - label: Go lang: go source: | @@ -30189,7 +30189,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProject --help + source: atlas api projects createProject --help - label: Go lang: go source: | @@ -30264,7 +30264,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProject --help + source: atlas api projects deleteProject --help - label: Go lang: go source: | @@ -30334,7 +30334,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProject --help + source: atlas api projects getProject --help - label: Go lang: go source: | @@ -30415,7 +30415,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProject --help + source: atlas api projects updateProject --help - label: Go lang: go source: | @@ -30500,7 +30500,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToProject --help + source: atlas api projects addUserToProject --help - label: Go lang: go source: | @@ -30579,7 +30579,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectIpAccessLists --help + source: atlas api projectIpAccessList listProjectIpAccessLists --help - label: Go lang: go source: | @@ -30666,7 +30666,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectIpAccessList --help + source: atlas api projectIpAccessList createProjectIpAccessList --help - label: Go lang: go source: | @@ -30757,7 +30757,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectIpAccessList --help + source: atlas api projectIpAccessList deleteProjectIpAccessList --help - label: Go lang: go source: | @@ -30840,7 +30840,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpList --help + source: atlas api projectIpAccessList getProjectIpList --help - label: Go lang: go source: | @@ -30923,7 +30923,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpAccessListStatus --help + source: atlas api projectIpAccessList getProjectIpAccessListStatus --help - label: Go lang: go source: | @@ -30998,7 +30998,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurations --help + source: atlas api alertConfigurations listAlertConfigurations --help - label: Go lang: go source: | @@ -31078,7 +31078,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAlertConfiguration --help + source: atlas api alertConfigurations createAlertConfiguration --help - label: Go lang: go source: | @@ -31164,7 +31164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAlertConfiguration --help + source: atlas api alertConfigurations deleteAlertConfiguration --help - label: Go lang: go source: | @@ -31247,7 +31247,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlertConfiguration --help + source: atlas api alertConfigurations getAlertConfiguration --help - label: Go lang: go source: | @@ -31339,7 +31339,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAlertConfiguration --help + source: atlas api alertConfigurations toggleAlertConfiguration --help - label: Go lang: go source: | @@ -31437,7 +31437,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAlertConfiguration --help + source: atlas api alertConfigurations updateAlertConfiguration --help - label: Go lang: go source: | @@ -31528,7 +31528,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertsByAlertConfigurationId --help + source: atlas api alerts listAlertsByAlertConfigurationId --help - label: Go lang: go source: | @@ -31614,7 +31614,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlerts --help + source: atlas api alerts listAlerts --help - label: Go lang: go source: | @@ -31697,7 +31697,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlert --help + source: atlas api alerts getAlert --help - label: Go lang: go source: | @@ -31789,7 +31789,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acknowledgeAlert --help + source: atlas api alerts acknowledgeAlert --help - label: Go lang: go source: | @@ -31880,7 +31880,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationsByAlertId --help + source: atlas api alertConfigurations listAlertConfigurationsByAlertId --help - label: Go lang: go source: | @@ -31955,7 +31955,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectApiKeys --help + source: atlas api programmaticApiKeys listProjectApiKeys --help - label: Go lang: go source: | @@ -32030,7 +32030,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectApiKey --help + source: atlas api programmaticApiKeys createProjectApiKey --help - label: Go lang: go source: | @@ -32117,7 +32117,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectApiKey --help + source: atlas api programmaticApiKeys removeProjectApiKey --help - label: Go lang: go source: | @@ -32206,7 +32206,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKeyRoles --help + source: atlas api programmaticApiKeys updateApiKeyRoles --help - label: Go lang: go source: | @@ -32296,7 +32296,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectApiKey --help + source: atlas api programmaticApiKeys addProjectApiKey --help - label: Go lang: go source: | @@ -32369,7 +32369,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAuditingConfiguration --help + source: atlas api auditing getAuditingConfiguration --help - label: Go lang: go source: | @@ -32446,7 +32446,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAuditingConfiguration --help + source: atlas api auditing updateAuditingConfiguration --help - label: Go lang: go source: | @@ -32519,7 +32519,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAWSCustomDNS --help + source: atlas api awsClustersDns getAwscustomDns --help - label: Go lang: go source: | @@ -32594,7 +32594,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAWSCustomDNS --help + source: atlas api awsClustersDns toggleAwscustomDns --help - label: Go lang: go source: | @@ -32671,7 +32671,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listExportBuckets --help + source: atlas api cloudBackups listExportBuckets --help - label: Go lang: go source: | @@ -32754,7 +32754,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createExportBucket --help + source: atlas api cloudBackups createExportBucket --help - label: Go lang: go source: | @@ -32841,7 +32841,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteExportBucket --help + source: atlas api cloudBackups deleteExportBucket --help - label: Go lang: go source: | @@ -32921,7 +32921,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getExportBucket --help + source: atlas api cloudBackups getExportBucket --help - label: Go lang: go source: | @@ -32994,7 +32994,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataProtectionSettings --help + source: atlas api cloudBackups getDataProtectionSettings --help - label: Go lang: go source: | @@ -33083,7 +33083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDataProtectionSettings --help + source: atlas api cloudBackups updateDataProtectionSettings --help - label: Go lang: go source: | @@ -33157,7 +33157,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderAccessRoles --help + source: atlas api cloudProviderAccess listCloudProviderAccessRoles --help - label: Go lang: go source: | @@ -33235,7 +33235,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCloudProviderAccessRole --help + source: atlas api cloudProviderAccess createCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33325,7 +33325,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33403,7 +33403,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCloudProviderAccessRole --help + source: atlas api cloudProviderAccess getCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33494,7 +33494,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33577,7 +33577,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusters --help + source: atlas api clusters listClusters --help - label: Go lang: go source: | @@ -33662,7 +33662,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCluster --help + source: atlas api clusters createCluster --help - label: Go lang: go source: | @@ -33754,7 +33754,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCluster --help + source: atlas api clusters deleteCluster --help - label: Go lang: go source: | @@ -33836,7 +33836,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCluster --help + source: atlas api clusters getCluster --help - label: Go lang: go source: | @@ -33928,7 +33928,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCluster --help + source: atlas api clusters updateCluster --help - label: Go lang: go source: | @@ -34014,7 +34014,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupExportJobs --help + source: atlas api cloudBackups listBackupExportJobs --help - label: Go lang: go source: | @@ -34103,7 +34103,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupExportJob --help + source: atlas api cloudBackups createBackupExportJob --help - label: Go lang: go source: | @@ -34190,7 +34190,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupExportJob --help + source: atlas api cloudBackups getBackupExportJob --help - label: Go lang: go source: | @@ -34271,7 +34271,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupRestoreJobs --help + source: atlas api cloudBackups listBackupRestoreJobs --help - label: Go lang: go source: | @@ -34364,7 +34364,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupRestoreJob --help + source: atlas api cloudBackups createBackupRestoreJob --help - label: Go lang: go source: | @@ -34457,7 +34457,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cancelBackupRestoreJob --help + source: atlas api cloudBackups cancelBackupRestoreJob --help - label: Go lang: go source: | @@ -34543,7 +34543,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupRestoreJob --help + source: atlas api cloudBackups getBackupRestoreJob --help - label: Go lang: go source: | @@ -34623,7 +34623,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllBackupSchedules --help + source: atlas api cloudBackups deleteAllBackupSchedules --help - label: Go lang: go source: | @@ -34702,7 +34702,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupSchedule --help + source: atlas api cloudBackups getBackupSchedule --help - label: Go lang: go source: | @@ -34793,7 +34793,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateBackupSchedule --help + source: atlas api cloudBackups updateBackupSchedule --help - label: Go lang: go source: | @@ -34881,7 +34881,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listReplicaSetBackups --help + source: atlas api cloudBackups listReplicaSetBackups --help - label: Go lang: go source: | @@ -34970,7 +34970,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api takeSnapshot --help + source: atlas api cloudBackups takeSnapshot --help - label: Go lang: go source: | @@ -35063,7 +35063,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteReplicaSetBackup --help + source: atlas api cloudBackups deleteReplicaSetBackup --help - label: Go lang: go source: | @@ -35151,7 +35151,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getReplicaSetBackup --help + source: atlas api cloudBackups getReplicaSetBackup --help - label: Go lang: go source: | @@ -35246,7 +35246,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateSnapshotRetention --help + source: atlas api cloudBackups updateSnapshotRetention --help - label: Go lang: go source: | @@ -35337,7 +35337,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteShardedClusterBackup --help + source: atlas api cloudBackups deleteShardedClusterBackup --help - label: Go lang: go source: | @@ -35425,7 +35425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getShardedClusterBackup --help + source: atlas api cloudBackups getShardedClusterBackup --help - label: Go lang: go source: | @@ -35505,7 +35505,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listShardedClusterBackups --help + source: atlas api cloudBackups listShardedClusterBackups --help - label: Go lang: go source: | @@ -35598,7 +35598,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadSharedClusterBackup --help + source: atlas api sharedTierSnapshots downloadSharedClusterBackup --help - label: Go lang: go source: | @@ -35693,7 +35693,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -35777,7 +35777,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackupRestoreJobs --help + source: atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help - label: Go lang: go source: | @@ -35866,7 +35866,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -35946,7 +35946,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackups --help + source: atlas api sharedTierSnapshots listSharedClusterBackups --help - label: Go lang: go source: | @@ -36035,7 +36035,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackup --help + source: atlas api sharedTierSnapshots getSharedClusterBackup --help - label: Go lang: go source: | @@ -36117,7 +36117,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupCheckpoints --help + source: atlas api legacyBackup listLegacyBackupCheckpoints --help - label: Go lang: go source: | @@ -36209,7 +36209,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupCheckpoint --help + source: atlas api legacyBackup getLegacyBackupCheckpoint --help - label: Go lang: go source: | @@ -36302,7 +36302,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch createAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36403,7 +36403,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesDeprecated --help + source: atlas api atlasSearch listAtlasSearchIndexesDeprecated --help - label: Go lang: go source: | @@ -36497,7 +36497,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36588,7 +36588,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch getAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36690,7 +36690,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch updateAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36777,7 +36777,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedNamespace --help + source: atlas api globalClusters getManagedNamespace --help - label: Go lang: go source: | @@ -36860,7 +36860,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllCustomZoneMappings --help + source: atlas api globalClusters deleteAllCustomZoneMappings --help - label: Go lang: go source: | @@ -36951,7 +36951,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomZoneMapping --help + source: atlas api globalClusters createCustomZoneMapping --help - label: Go lang: go source: | @@ -37050,7 +37050,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteManagedNamespace --help + source: atlas api globalClusters deleteManagedNamespace --help - label: Go lang: go source: | @@ -37143,7 +37143,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createManagedNamespace --help + source: atlas api globalClusters createManagedNamespace --help - label: Go lang: go source: | @@ -37301,7 +37301,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRollingIndex --help + source: atlas api rollingIndex createRollingIndex --help - label: Go lang: go source: | @@ -37389,7 +37389,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOnlineArchives --help + source: atlas api onlineArchive listOnlineArchives --help - label: Go lang: go source: | @@ -37482,7 +37482,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOnlineArchive --help + source: atlas api onlineArchive createOnlineArchive --help - label: Go lang: go source: | @@ -37578,7 +37578,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOnlineArchive --help + source: atlas api onlineArchive deleteOnlineArchive --help - label: Go lang: go source: | @@ -37671,7 +37671,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOnlineArchive --help + source: atlas api onlineArchive getOnlineArchive --help - label: Go lang: go source: | @@ -37773,7 +37773,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOnlineArchive --help + source: atlas api onlineArchive updateOnlineArchive --help - label: Go lang: go source: | @@ -37885,7 +37885,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadOnlineArchiveQueryLogs --help + source: atlas api onlineArchive downloadOnlineArchiveQueryLogs --help - label: Go lang: go source: | @@ -37972,7 +37972,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api endOutageSimulation --help + source: atlas api clusterOutageSimulation endOutageSimulation --help - label: Go lang: go source: | @@ -38056,7 +38056,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOutageSimulation --help + source: atlas api clusterOutageSimulation getOutageSimulation --help - label: Go lang: go source: | @@ -38145,7 +38145,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startOutageSimulation --help + source: atlas api clusterOutageSimulation startOutageSimulation --help - label: Go lang: go source: | @@ -38233,7 +38233,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterAdvancedConfiguration --help + source: atlas api clusters getClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -38327,7 +38327,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help + source: atlas api clusters updateClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -38408,7 +38408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api testFailover --help + source: atlas api clusters testFailover --help - label: Go lang: go source: | @@ -38507,7 +38507,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupRestoreJobs --help + source: atlas api legacyBackup listLegacyBackupRestoreJobs --help - label: Go lang: go source: | @@ -38594,7 +38594,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLegacyBackupRestoreJob --help + source: atlas api legacyBackup createLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -38691,7 +38691,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupRestoreJob --help + source: atlas api legacyBackup getLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -38772,7 +38772,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchDeployment --help + source: atlas api atlasSearch deleteAtlasSearchDeployment --help - label: Go lang: go source: | @@ -38853,7 +38853,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchDeployment --help + source: atlas api atlasSearch getAtlasSearchDeployment --help - label: Go lang: go source: | @@ -38943,7 +38943,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchDeployment --help + source: atlas api atlasSearch updateAtlasSearchDeployment --help - label: Go lang: go source: | @@ -39037,7 +39037,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchDeployment --help + source: atlas api atlasSearch createAtlasSearchDeployment --help - label: Go lang: go source: | @@ -39124,7 +39124,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshotSchedule --help + source: atlas api legacyBackup getLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -39212,7 +39212,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + source: atlas api legacyBackup updateLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -39308,7 +39308,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacySnapshots --help + source: atlas api legacyBackup listLegacySnapshots --help - label: Go lang: go source: | @@ -39398,7 +39398,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLegacySnapshot --help + source: atlas api legacyBackup deleteLegacySnapshot --help - label: Go lang: go source: | @@ -39485,7 +39485,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshot --help + source: atlas api legacyBackup getLegacySnapshot --help - label: Go lang: go source: | @@ -39579,7 +39579,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotRetention --help + source: atlas api legacyBackup updateLegacySnapshotRetention --help - label: Go lang: go source: | @@ -39661,7 +39661,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterStatus --help + source: atlas api clusters getClusterStatus --help - label: Go lang: go source: | @@ -39774,7 +39774,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostLogs --help + source: atlas api monitoringAndLogs getHostLogs --help - label: Go lang: go source: | @@ -39860,7 +39860,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderRegions --help + source: atlas api clusters listCloudProviderRegions --help - label: Go lang: go source: | @@ -39944,7 +39944,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedCluster --help + source: atlas api clusters upgradeSharedCluster --help - label: Go lang: go source: | @@ -40032,7 +40032,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedClusterToServerless --help + source: atlas api clusters upgradeSharedClusterToServerless --help - label: Go lang: go source: | @@ -40121,7 +40121,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help + source: atlas api networkPeering listPeeringContainerByCloudProvider --help - label: Go lang: go source: | @@ -40204,7 +40204,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringContainer --help + source: atlas api networkPeering createPeeringContainer --help - label: Go lang: go source: | @@ -40293,7 +40293,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringContainer --help + source: atlas api networkPeering deletePeeringContainer --help - label: Go lang: go source: | @@ -40371,7 +40371,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringContainer --help + source: atlas api networkPeering getPeeringContainer --help - label: Go lang: go source: | @@ -40464,7 +40464,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringContainer --help + source: atlas api networkPeering updatePeeringContainer --help - label: Go lang: go source: | @@ -40540,7 +40540,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainers --help + source: atlas api networkPeering listPeeringContainers --help - label: Go lang: go source: | @@ -40611,7 +40611,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCustomDatabaseRoles --help + source: atlas api customDatabaseRoles listCustomDatabaseRoles --help - label: Go lang: go source: | @@ -40694,7 +40694,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomDatabaseRole --help + source: atlas api customDatabaseRoles createCustomDatabaseRole --help - label: Go lang: go source: | @@ -40777,7 +40777,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCustomDatabaseRole --help + source: atlas api customDatabaseRoles deleteCustomDatabaseRole --help - label: Go lang: go source: | @@ -40853,7 +40853,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCustomDatabaseRole --help + source: atlas api customDatabaseRoles getCustomDatabaseRole --help - label: Go lang: go source: | @@ -40942,7 +40942,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCustomDatabaseRole --help + source: atlas api customDatabaseRoles updateCustomDatabaseRole --help - label: Go lang: go source: | @@ -41026,7 +41026,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFederatedDatabases --help + source: atlas api dataFederation listFederatedDatabases --help - label: Go lang: go source: | @@ -41107,7 +41107,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFederatedDatabase --help + source: atlas api dataFederation createFederatedDatabase --help - label: Go lang: go source: | @@ -41186,7 +41186,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederatedDatabase --help + source: atlas api dataFederation deleteFederatedDatabase --help - label: Go lang: go source: | @@ -41263,7 +41263,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederatedDatabase --help + source: atlas api dataFederation getFederatedDatabase --help - label: Go lang: go source: | @@ -41352,7 +41352,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFederatedDatabase --help + source: atlas api dataFederation updateFederatedDatabase --help - label: Go lang: go source: | @@ -41435,7 +41435,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimits --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimits --help - label: Go lang: go source: | @@ -41528,7 +41528,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOneDataFederationInstanceQueryLimit --help + source: atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help - label: Go lang: go source: | @@ -41621,7 +41621,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimit --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimit --help - label: Go lang: go source: | @@ -41724,7 +41724,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + source: atlas api dataFederation createOneDataFederationQueryLimit --help - label: Go lang: go source: | @@ -41827,7 +41827,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFederatedDatabaseQueryLogs --help + source: atlas api dataFederation downloadFederatedDatabaseQueryLogs --help - label: Go lang: go source: | @@ -41901,7 +41901,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUsers --help + source: atlas api databaseUsers listDatabaseUsers --help - label: Go lang: go source: | @@ -42075,7 +42075,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUser --help + source: atlas api databaseUsers createDatabaseUser --help - label: Go lang: go source: | @@ -42178,7 +42178,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDatabaseUser --help + source: atlas api databaseUsers deleteDatabaseUser --help - label: Go lang: go source: | @@ -42274,7 +42274,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseUser --help + source: atlas api databaseUsers getDatabaseUser --help - label: Go lang: go source: | @@ -42383,7 +42383,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDatabaseUser --help + source: atlas api databaseUsers updateDatabaseUser --help - label: Go lang: go source: | @@ -42467,7 +42467,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUserCertificates --help + source: atlas api x509Authentication listDatabaseUserCertificates --help - label: Go lang: go source: | @@ -42565,7 +42565,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUserCertificate --help + source: atlas api x509Authentication createDatabaseUserCertificate --help - label: Go lang: go source: | @@ -42684,7 +42684,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByClusterName --help + source: atlas api accessTracking listAccessLogsByClusterName --help - label: Go lang: go source: | @@ -42796,7 +42796,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByHostname --help + source: atlas api accessTracking listAccessLogsByHostname --help - label: Go lang: go source: | @@ -42868,7 +42868,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help - label: Go lang: go source: | @@ -42961,7 +42961,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help - label: Go lang: go source: | @@ -43042,7 +43042,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help - label: Go lang: go source: | @@ -43125,7 +43125,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -43222,7 +43222,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help - label: Go lang: go source: | @@ -43307,7 +43307,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -43433,7 +43433,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectEvents --help + source: atlas api events listProjectEvents --help - label: Go lang: go source: | @@ -43522,7 +43522,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectEvent --help + source: atlas api events getProjectEvent --help - label: Go lang: go source: | @@ -43593,7 +43593,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listMetricTypes --help + source: atlas api monitoringAndLogs listMetricTypes --help - label: Go lang: go source: | @@ -43694,7 +43694,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIndexMetrics --help + source: atlas api monitoringAndLogs getIndexMetrics --help - label: Go lang: go source: | @@ -43794,7 +43794,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIndexMetrics --help + source: atlas api monitoringAndLogs listIndexMetrics --help - label: Go lang: go source: | @@ -43893,7 +43893,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMeasurements --help + source: atlas api monitoringAndLogs getMeasurements --help - label: Go lang: go source: | @@ -43969,7 +43969,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listThirdPartyIntegrations --help + source: atlas api thirdPartyIntegrations listThirdPartyIntegrations --help - label: Go lang: go source: | @@ -44060,7 +44060,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help - label: Go lang: go source: | @@ -44150,7 +44150,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations getThirdPartyIntegration --help - label: Go lang: go source: | @@ -44252,7 +44252,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations createThirdPartyIntegration --help - label: Go lang: go source: | @@ -44356,7 +44356,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations updateThirdPartyIntegration --help - label: Go lang: go source: | @@ -44438,7 +44438,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectInvitations --help + source: atlas api projects listProjectInvitations --help - label: Go lang: go source: | @@ -44519,7 +44519,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitation --help + source: atlas api projects updateProjectInvitation --help - label: Go lang: go source: | @@ -44600,7 +44600,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectInvitation --help + source: atlas api projects createProjectInvitation --help - label: Go lang: go source: | @@ -44683,7 +44683,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectInvitation --help + source: atlas api projects deleteProjectInvitation --help - label: Go lang: go source: | @@ -44764,7 +44764,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectInvitation --help + source: atlas api projects getProjectInvitation --help - label: Go lang: go source: | @@ -44853,7 +44853,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitationById --help + source: atlas api projects updateProjectInvitationById --help - label: Go lang: go source: | @@ -44929,7 +44929,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllIPAddresses --help + source: atlas api projects returnAllIpaddresses --help - label: Go lang: go source: | @@ -45006,7 +45006,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectLimits --help + source: atlas api projects listProjectLimits --help - label: Go lang: go source: | @@ -45115,7 +45115,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectLimit --help + source: atlas api projects deleteProjectLimit --help - label: Go lang: go source: | @@ -45225,7 +45225,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLimit --help + source: atlas api projects getProjectLimit --help - label: Go lang: go source: | @@ -45345,7 +45345,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setProjectLimit --help + source: atlas api projects setProjectLimit --help - label: Go lang: go source: | @@ -45441,7 +45441,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushMigration --help + source: atlas api cloudMigrationService createPushMigration --help - label: Go lang: go source: | @@ -45520,7 +45520,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushMigration --help + source: atlas api cloudMigrationService getPushMigration --help - label: Go lang: go source: | @@ -45594,7 +45594,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cutoverMigration --help + source: atlas api cloudMigrationService cutoverMigration --help - label: Go lang: go source: | @@ -45683,7 +45683,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateMigration --help + source: atlas api cloudMigrationService validateMigration --help - label: Go lang: go source: | @@ -45772,7 +45772,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getValidationStatus --help + source: atlas api cloudMigrationService getValidationStatus --help - label: Go lang: go source: | @@ -45840,7 +45840,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resetMaintenanceWindow --help + source: atlas api maintenanceWindows resetMaintenanceWindow --help - label: Go lang: go source: | @@ -45908,7 +45908,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMaintenanceWindow --help + source: atlas api maintenanceWindows getMaintenanceWindow --help - label: Go lang: go source: | @@ -45984,7 +45984,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateMaintenanceWindow --help + source: atlas api maintenanceWindows updateMaintenanceWindow --help - label: Go lang: go source: | @@ -46056,7 +46056,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help + source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help - label: Go lang: go source: | @@ -46128,7 +46128,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deferMaintenanceWindow --help + source: atlas api maintenanceWindows deferMaintenanceWindow --help - label: Go lang: go source: | @@ -46201,7 +46201,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedSlowMs --help + source: atlas api performanceAdvisor getManagedSlowMs --help - label: Go lang: go source: | @@ -46270,7 +46270,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableSlowOperationThresholding --help + source: atlas api performanceAdvisor disableSlowOperationThresholding --help - label: Go lang: go source: | @@ -46339,7 +46339,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api enableSlowOperationThresholding --help + source: atlas api performanceAdvisor enableSlowOperationThresholding --help - label: Go lang: go source: | @@ -46453,7 +46453,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLTSVersions --help + source: atlas api projects getProjectLtsversions --help - label: Go lang: go source: | @@ -46537,7 +46537,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringConnections --help + source: atlas api networkPeering listPeeringConnections --help - label: Go lang: go source: | @@ -46621,7 +46621,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringConnection --help + source: atlas api networkPeering createPeeringConnection --help - label: Go lang: go source: | @@ -46705,7 +46705,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringConnection --help + source: atlas api networkPeering deletePeeringConnection --help - label: Go lang: go source: | @@ -46784,7 +46784,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringConnection --help + source: atlas api networkPeering getPeeringConnection --help - label: Go lang: go source: | @@ -46874,7 +46874,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringConnection --help + source: atlas api networkPeering updatePeeringConnection --help - label: Go lang: go source: | @@ -46950,7 +46950,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelines --help + source: atlas api dataLakePipelines listPipelines --help - label: Go lang: go source: | @@ -47028,7 +47028,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPipeline --help + source: atlas api dataLakePipelines createPipeline --help - label: Go lang: go source: | @@ -47111,7 +47111,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipeline --help + source: atlas api dataLakePipelines deletePipeline --help - label: Go lang: go source: | @@ -47190,7 +47190,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipeline --help + source: atlas api dataLakePipelines getPipeline --help - label: Go lang: go source: | @@ -47279,7 +47279,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePipeline --help + source: atlas api dataLakePipelines updatePipeline --help - label: Go lang: go source: | @@ -47365,7 +47365,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSchedules --help + source: atlas api dataLakePipelines listPipelineSchedules --help - label: Go lang: go source: | @@ -47455,7 +47455,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSnapshots --help + source: atlas api dataLakePipelines listPipelineSnapshots --help - label: Go lang: go source: | @@ -47535,7 +47535,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pausePipeline --help + source: atlas api dataLakePipelines pausePipeline --help - label: Go lang: go source: | @@ -47619,7 +47619,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resumePipeline --help + source: atlas api dataLakePipelines resumePipeline --help - label: Go lang: go source: | @@ -47713,7 +47713,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineRuns --help + source: atlas api dataLakePipelines listPipelineRuns --help - label: Go lang: go source: | @@ -47803,7 +47803,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipelineRunDataset --help + source: atlas api dataLakePipelines deletePipelineRunDataset --help - label: Go lang: go source: | @@ -47892,7 +47892,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipelineRun --help + source: atlas api dataLakePipelines getPipelineRun --help - label: Go lang: go source: | @@ -47979,7 +47979,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api triggerSnapshotIngestion --help + source: atlas api dataLakePipelines triggerSnapshotIngestion --help - label: Go lang: go source: | @@ -48065,7 +48065,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateEndpointServices --help + source: atlas api privateEndpointServices listPrivateEndpointServices --help - label: Go lang: go source: | @@ -48154,7 +48154,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpointService --help + source: atlas api privateEndpointServices deletePrivateEndpointService --help - label: Go lang: go source: | @@ -48244,7 +48244,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpointService --help + source: atlas api privateEndpointServices getPrivateEndpointService --help - label: Go lang: go source: | @@ -48346,7 +48346,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpoint --help + source: atlas api privateEndpointServices createPrivateEndpoint --help - label: Go lang: go source: | @@ -48446,7 +48446,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpoint --help + source: atlas api privateEndpointServices deletePrivateEndpoint --help - label: Go lang: go source: | @@ -48543,7 +48543,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpoint --help + source: atlas api privateEndpointServices getPrivateEndpoint --help - label: Go lang: go source: | @@ -48622,7 +48622,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpointService --help + source: atlas api privateEndpointServices createPrivateEndpointService --help - label: Go lang: go source: | @@ -48697,7 +48697,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -48774,7 +48774,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -48858,7 +48858,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessPrivateEndpoints --help + source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help - label: Go lang: go source: | @@ -48948,7 +48948,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49039,7 +49039,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49125,7 +49125,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49218,7 +49218,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49295,7 +49295,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + source: atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help - label: Go lang: go source: | @@ -49376,7 +49376,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disablePeering --help + source: atlas api networkPeering disablePeering --help - label: Go lang: go source: | @@ -49456,7 +49456,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDataFederationPrivateEndpoints --help + source: atlas api dataFederation listDataFederationPrivateEndpoints --help - label: Go lang: go source: | @@ -49552,7 +49552,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help + source: atlas api dataFederation createDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -49636,7 +49636,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help + source: atlas api dataFederation deleteDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -49717,7 +49717,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataFederationPrivateEndpoint --help + source: atlas api dataFederation getDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -49789,7 +49789,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasProcesses --help + source: atlas api monitoringAndLogs listAtlasProcesses --help - label: Go lang: go source: | @@ -49866,7 +49866,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasProcess --help + source: atlas api monitoringAndLogs getAtlasProcess --help - label: Go lang: go source: | @@ -49946,7 +49946,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabases --help + source: atlas api monitoringAndLogs listDatabases --help - label: Go lang: go source: | @@ -50029,7 +50029,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabase --help + source: atlas api monitoringAndLogs getDatabase --help - label: Go lang: go source: | @@ -50138,7 +50138,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseMeasurements --help + source: atlas api monitoringAndLogs getDatabaseMeasurements --help - label: Go lang: go source: | @@ -50218,7 +50218,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskPartitions --help + source: atlas api monitoringAndLogs listDiskPartitions --help - label: Go lang: go source: | @@ -50300,7 +50300,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskMeasurements --help + source: atlas api monitoringAndLogs listDiskMeasurements --help - label: Go lang: go source: | @@ -50425,7 +50425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDiskMeasurements --help + source: atlas api monitoringAndLogs getDiskMeasurements --help - label: Go lang: go source: | @@ -50661,7 +50661,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostMeasurements --help + source: atlas api monitoringAndLogs getHostMeasurements --help - label: Go lang: go source: | @@ -50758,7 +50758,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueryNamespaces --help + source: atlas api performanceAdvisor listSlowQueryNamespaces --help - label: Go lang: go source: | @@ -50872,7 +50872,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueries --help + source: atlas api performanceAdvisor listSlowQueries --help - label: Go lang: go source: | @@ -50993,7 +50993,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSuggestedIndexes --help + source: atlas api performanceAdvisor listSuggestedIndexes --help - label: Go lang: go source: | @@ -51066,7 +51066,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport deletePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51138,7 +51138,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport getPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51218,7 +51218,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport updatePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51302,7 +51302,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport createPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51387,7 +51387,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api loadSampleDataset --help + source: atlas api clusters loadSampleDataset --help - label: Go lang: go source: | @@ -51468,7 +51468,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSampleDatasetLoadStatus --help + source: atlas api clusters getSampleDatasetLoadStatus --help - label: Go lang: go source: | @@ -51540,7 +51540,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessInstances --help + source: atlas api serverlessInstances listServerlessInstances --help - label: Go lang: go source: | @@ -51619,7 +51619,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessInstance --help + source: atlas api serverlessInstances createServerlessInstance --help - label: Go lang: go source: | @@ -51706,7 +51706,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackupRestoreJobs --help + source: atlas api cloudBackups listServerlessBackupRestoreJobs --help - label: Go lang: go source: | @@ -51796,7 +51796,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + source: atlas api cloudBackups createServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -51889,7 +51889,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackupRestoreJob --help + source: atlas api cloudBackups getServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -51972,7 +51972,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackups --help + source: atlas api cloudBackups listServerlessBackups --help - label: Go lang: go source: | @@ -52061,7 +52061,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackup --help + source: atlas api cloudBackups getServerlessBackup --help - label: Go lang: go source: | @@ -52139,7 +52139,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessAutoIndexing --help + source: atlas api performanceAdvisor getServerlessAutoIndexing --help - label: Go lang: go source: | @@ -52221,7 +52221,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setServerlessAutoIndexing --help + source: atlas api performanceAdvisor setServerlessAutoIndexing --help - label: Go lang: go source: | @@ -52307,7 +52307,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessInstance --help + source: atlas api serverlessInstances deleteServerlessInstance --help - label: Go lang: go source: | @@ -52388,7 +52388,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessInstance --help + source: atlas api serverlessInstances getServerlessInstance --help - label: Go lang: go source: | @@ -52474,7 +52474,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessInstance --help + source: atlas api serverlessInstances updateServerlessInstance --help - label: Go lang: go source: | @@ -52551,7 +52551,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectSettings --help + source: atlas api projects getProjectSettings --help - label: Go lang: go source: | @@ -52630,7 +52630,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectSettings --help + source: atlas api projects updateProjectSettings --help - label: Go lang: go source: | @@ -52705,7 +52705,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamInstances --help + source: atlas api streams listStreamInstances --help - label: Go lang: go source: | @@ -52782,7 +52782,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstance --help + source: atlas api streams createStreamInstance --help - label: Go lang: go source: | @@ -52865,7 +52865,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamInstance --help + source: atlas api streams deleteStreamInstance --help - label: Go lang: go source: | @@ -52947,7 +52947,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamInstance --help + source: atlas api streams getStreamInstance --help - label: Go lang: go source: | @@ -53034,7 +53034,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamInstance --help + source: atlas api streams updateStreamInstance --help - label: Go lang: go source: | @@ -53138,7 +53138,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadStreamTenantAuditLogs --help + source: atlas api streams downloadStreamTenantAuditLogs --help - label: Go lang: go source: | @@ -53219,7 +53219,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamConnections --help + source: atlas api streams listStreamConnections --help - label: Go lang: go source: | @@ -53304,7 +53304,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamConnection --help + source: atlas api streams createStreamConnection --help - label: Go lang: go source: | @@ -53393,7 +53393,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamConnection --help + source: atlas api streams deleteStreamConnection --help - label: Go lang: go source: | @@ -53474,7 +53474,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamConnection --help + source: atlas api streams getStreamConnection --help - label: Go lang: go source: | @@ -53567,7 +53567,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamConnection --help + source: atlas api streams updateStreamConnection --help - label: Go lang: go source: | @@ -53649,7 +53649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectTeams --help + source: atlas api teams listProjectTeams --help - label: Go lang: go source: | @@ -53735,7 +53735,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addAllTeamsToProject --help + source: atlas api teams addAllTeamsToProject --help - label: Go lang: go source: | @@ -53823,7 +53823,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectTeam --help + source: atlas api teams removeProjectTeam --help - label: Go lang: go source: | @@ -53916,7 +53916,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateTeamRoles --help + source: atlas api teams updateTeamRoles --help - label: Go lang: go source: | @@ -53989,7 +53989,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfiguration --help + source: atlas api ldapConfiguration getLdapconfiguration --help - label: Go lang: go source: | @@ -54069,7 +54069,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api saveLDAPConfiguration --help + source: atlas api ldapConfiguration saveLdapconfiguration --help - label: Go lang: go source: | @@ -54144,7 +54144,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableCustomerManagedX509 --help + source: atlas api x509Authentication disableCustomerManagedX509 --help - label: Go lang: go source: | @@ -54213,7 +54213,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLDAPConfiguration --help + source: atlas api ldapConfiguration deleteLdapconfiguration --help - label: Go lang: go source: | @@ -54291,7 +54291,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyLDAPConfiguration --help + source: atlas api ldapConfiguration verifyLdapconfiguration --help - label: Go lang: go source: | @@ -54373,7 +54373,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfigurationStatus --help + source: atlas api ldapConfiguration getLdapconfigurationStatus --help - label: Go lang: go source: | @@ -54457,7 +54457,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api projects listProjectUsers --help - label: Go lang: go source: | @@ -54537,7 +54537,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api projects removeProjectUser --help - label: Go lang: go source: | @@ -54626,7 +54626,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectRoles --help + source: atlas api projects updateProjectRoles --help - label: Go lang: go source: | @@ -54712,7 +54712,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectByName --help + source: atlas api projects getProjectByName --help - label: Go lang: go source: | @@ -54794,7 +54794,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizations --help + source: atlas api organizations listOrganizations --help - label: Go lang: go source: | @@ -54876,7 +54876,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganization --help + source: atlas api organizations createOrganization --help - label: Go lang: go source: | @@ -54961,7 +54961,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganization --help + source: atlas api organizations deleteOrganization --help - label: Go lang: go source: | @@ -55035,7 +55035,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganization --help + source: atlas api organizations getOrganization --help - label: Go lang: go source: | @@ -55116,7 +55116,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameOrganization --help + source: atlas api organizations renameOrganization --help - label: Go lang: go source: | @@ -55195,7 +55195,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeys --help + source: atlas api programmaticApiKeys listApiKeys --help - label: Go lang: go source: | @@ -55273,7 +55273,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKey --help + source: atlas api programmaticApiKeys createApiKey --help - label: Go lang: go source: | @@ -55358,7 +55358,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKey --help + source: atlas api programmaticApiKeys deleteApiKey --help - label: Go lang: go source: | @@ -55438,7 +55438,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKey --help + source: atlas api programmaticApiKeys getApiKey --help - label: Go lang: go source: | @@ -55527,7 +55527,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKey --help + source: atlas api programmaticApiKeys updateApiKey --help - label: Go lang: go source: | @@ -55615,7 +55615,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeyAccessListsEntries --help + source: atlas api programmaticApiKeys listApiKeyAccessListsEntries --help - label: Go lang: go source: | @@ -55708,7 +55708,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKeyAccessList --help + source: atlas api programmaticApiKeys createApiKeyAccessList --help - label: Go lang: go source: | @@ -55805,7 +55805,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKeyAccessListEntry --help + source: atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help - label: Go lang: go source: | @@ -55895,7 +55895,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKeyAccessList --help + source: atlas api programmaticApiKeys getApiKeyAccessList --help - label: Go lang: go source: | @@ -55972,7 +55972,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess --help + source: atlas api invoices createCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -56063,7 +56063,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess_1 --help + source: atlas api invoices createCostExplorerQueryProcess1 --help - label: Go lang: go source: | @@ -56167,7 +56167,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationEvents --help + source: atlas api events listOrganizationEvents --help - label: Go lang: go source: | @@ -56256,7 +56256,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationEvent --help + source: atlas api events getOrganizationEvent --help - label: Go lang: go source: | @@ -56329,7 +56329,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederationSettings --help + source: atlas api federatedAuthentication getFederationSettings --help - label: Go lang: go source: | @@ -56418,7 +56418,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationProjects --help + source: atlas api organizations listOrganizationProjects --help - label: Go lang: go source: | @@ -56499,7 +56499,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationInvitations --help + source: atlas api organizations listOrganizationInvitations --help - label: Go lang: go source: | @@ -56578,7 +56578,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitation --help + source: atlas api organizations updateOrganizationInvitation --help - label: Go lang: go source: | @@ -56661,7 +56661,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationInvitation --help + source: atlas api organizations createOrganizationInvitation --help - label: Go lang: go source: | @@ -56744,7 +56744,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganizationInvitation --help + source: atlas api organizations deleteOrganizationInvitation --help - label: Go lang: go source: | @@ -56824,7 +56824,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationInvitation --help + source: atlas api organizations getOrganizationInvitation --help - label: Go lang: go source: | @@ -56912,7 +56912,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitationById --help + source: atlas api organizations updateOrganizationInvitationById --help - label: Go lang: go source: | @@ -57049,7 +57049,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listInvoices --help + source: atlas api invoices listInvoices --help - label: Go lang: go source: | @@ -57135,7 +57135,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getInvoice --help + source: atlas api invoices getInvoice --help - label: Go lang: go source: | @@ -57222,7 +57222,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadInvoiceCSV --help + source: atlas api invoices downloadInvoiceCsv --help - label: Go lang: go source: | @@ -57293,7 +57293,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPendingInvoices --help + source: atlas api invoices listPendingInvoices --help - label: Go lang: go source: | @@ -57366,7 +57366,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSourceProjects --help + source: atlas api cloudMigrationService listSourceProjects --help - label: Go lang: go source: | @@ -57436,7 +57436,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLinkToken --help + source: atlas api cloudMigrationService deleteLinkToken --help - label: Go lang: go source: | @@ -57513,7 +57513,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLinkToken --help + source: atlas api cloudMigrationService createLinkToken --help - label: Go lang: go source: | @@ -57590,7 +57590,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationSettings --help + source: atlas api organizations getOrganizationSettings --help - label: Go lang: go source: | @@ -57669,7 +57669,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationSettings --help + source: atlas api organizations updateOrganizationSettings --help - label: Go lang: go source: | @@ -57752,7 +57752,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationTeams --help + source: atlas api teams listOrganizationTeams --help - label: Go lang: go source: | @@ -57836,7 +57836,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createTeam --help + source: atlas api teams createTeam --help - label: Go lang: go source: | @@ -57925,7 +57925,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteTeam --help + source: atlas api teams deleteTeam --help - label: Go lang: go source: | @@ -58009,7 +58009,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamById --help + source: atlas api teams getTeamById --help - label: Go lang: go source: | @@ -58102,7 +58102,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameTeam --help + source: atlas api teams renameTeam --help - label: Go lang: go source: | @@ -58195,7 +58195,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api teams listTeamUsers --help - label: Go lang: go source: | @@ -58290,7 +58290,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addTeamUser --help + source: atlas api teams addTeamUser --help - label: Go lang: go source: | @@ -58386,7 +58386,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeTeamUser --help + source: atlas api teams removeTeamUser --help - label: Go lang: go source: | @@ -58468,7 +58468,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamByName --help + source: atlas api teams getTeamByName --help - label: Go lang: go source: | @@ -58544,7 +58544,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api organizations listOrganizationUsers --help - label: Go lang: go source: | @@ -58627,7 +58627,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api organizations removeOrganizationUser --help - label: Go lang: go source: | @@ -58716,7 +58716,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationRoles --help + source: atlas api organizations updateOrganizationRoles --help - label: Go lang: go source: | @@ -58802,7 +58802,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUser --help + source: atlas api mongoDbCloudUsers createUser --help - label: Go lang: go source: | @@ -58885,7 +58885,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUser --help + source: atlas api mongoDbCloudUsers getUser --help - label: Go lang: go source: | @@ -58962,7 +58962,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUserByUsername --help + source: atlas api mongoDbCloudUsers getUserByUsername --help - label: Go lang: go source: | 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 fcbde4b5d8..edd054c5ca 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 @@ -35416,7 +35416,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "source": "atlas api root getSystemStatus --help" }, { "lang": "go", @@ -35483,7 +35483,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "source": "atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help" }, { "lang": "go", @@ -35556,7 +35556,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "source": "atlas api clusters listClustersForAllProjects --help" }, { "lang": "go", @@ -35629,7 +35629,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "source": "atlas api events listEventTypes --help" }, { "lang": "go", @@ -35693,7 +35693,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "source": "atlas api federatedAuthentication deleteFederationApp --help" }, { "lang": "go", @@ -35769,7 +35769,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "source": "atlas api federatedAuthentication listConnectedOrgConfigs --help" }, { "lang": "go", @@ -35852,7 +35852,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication removeConnectedOrgConfig --help" }, { "lang": "go", @@ -35933,7 +35933,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication getConnectedOrgConfig --help" }, { "lang": "go", @@ -36025,7 +36025,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication updateConnectedOrgConfig --help" }, { "lang": "go", @@ -36098,7 +36098,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "source": "atlas api federatedAuthentication listRoleMappings --help" }, { "lang": "go", @@ -36180,7 +36180,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "source": "atlas api federatedAuthentication createRoleMapping --help" }, { "lang": "go", @@ -36263,7 +36263,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "source": "atlas api federatedAuthentication deleteRoleMapping --help" }, { "lang": "go", @@ -36347,7 +36347,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "source": "atlas api federatedAuthentication getRoleMapping --help" }, { "lang": "go", @@ -36442,7 +36442,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "source": "atlas api federatedAuthentication updateRoleMapping --help" }, { "lang": "go", @@ -36550,7 +36550,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "source": "atlas api federatedAuthentication listIdentityProviders --help" }, { "lang": "go", @@ -36634,7 +36634,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "source": "atlas api federatedAuthentication getIdentityProvider --help" }, { "lang": "go", @@ -36725,7 +36725,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "source": "atlas api federatedAuthentication updateIdentityProvider --help" }, { "lang": "go", @@ -36796,7 +36796,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "source": "atlas api federatedAuthentication getIdentityProviderMetadata --help" }, { "lang": "go", @@ -36872,7 +36872,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "source": "atlas api projects listProjects --help" }, { "lang": "go", @@ -36968,7 +36968,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProject --help" + "source": "atlas api projects createProject --help" }, { "lang": "go", @@ -37052,7 +37052,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "source": "atlas api projects getProjectByName --help" }, { "lang": "go", @@ -37122,7 +37122,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "source": "atlas api projects deleteProject --help" }, { "lang": "go", @@ -37190,7 +37190,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProject --help" + "source": "atlas api projects getProject --help" }, { "lang": "go", @@ -37275,7 +37275,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "source": "atlas api projects updateProject --help" }, { "lang": "go", @@ -37361,7 +37361,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "source": "atlas api projects addUserToProject --help" }, { "lang": "go", @@ -37441,7 +37441,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "source": "atlas api projectIpAccessList listProjectIpAccessLists --help" }, { "lang": "go", @@ -37539,7 +37539,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "source": "atlas api projectIpAccessList createProjectIpAccessList --help" }, { "lang": "go", @@ -37624,7 +37624,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "source": "atlas api projectIpAccessList deleteProjectIpAccessList --help" }, { "lang": "go", @@ -37710,7 +37710,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "source": "atlas api projectIpAccessList getProjectIpList --help" }, { "lang": "go", @@ -37797,7 +37797,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "source": "atlas api projectIpAccessList getProjectIpAccessListStatus --help" }, { "lang": "go", @@ -37873,7 +37873,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "source": "atlas api alertConfigurations listAlertConfigurations --help" }, { "lang": "go", @@ -37952,7 +37952,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "source": "atlas api alertConfigurations createAlertConfiguration --help" }, { "lang": "go", @@ -38032,7 +38032,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "source": "atlas api alertConfigurations deleteAlertConfiguration --help" }, { "lang": "go", @@ -38113,7 +38113,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "source": "atlas api alertConfigurations getAlertConfiguration --help" }, { "lang": "go", @@ -38205,7 +38205,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "source": "atlas api alertConfigurations toggleAlertConfiguration --help" }, { "lang": "go", @@ -38300,7 +38300,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "source": "atlas api alertConfigurations updateAlertConfiguration --help" }, { "lang": "go", @@ -38392,7 +38392,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "source": "atlas api alerts listAlertsByAlertConfigurationId --help" }, { "lang": "go", @@ -38484,7 +38484,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "source": "atlas api alerts listAlerts --help" }, { "lang": "go", @@ -38566,7 +38566,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "source": "atlas api alerts getAlert --help" }, { "lang": "go", @@ -38661,7 +38661,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "source": "atlas api alerts acknowledgeAlert --help" }, { "lang": "go", @@ -38753,7 +38753,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "source": "atlas api alertConfigurations listAlertConfigurationsByAlertId --help" }, { "lang": "go", @@ -38833,7 +38833,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "source": "atlas api programmaticApiKeys listProjectApiKeys --help" }, { "lang": "go", @@ -38909,7 +38909,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "source": "atlas api programmaticApiKeys createProjectApiKey --help" }, { "lang": "go", @@ -38995,7 +38995,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "source": "atlas api programmaticApiKeys removeProjectApiKey --help" }, { "lang": "go", @@ -39095,7 +39095,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "source": "atlas api programmaticApiKeys updateApiKeyRoles --help" }, { "lang": "go", @@ -39186,7 +39186,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "source": "atlas api programmaticApiKeys addProjectApiKey --help" }, { "lang": "go", @@ -39253,7 +39253,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "source": "atlas api auditing getAuditingConfiguration --help" }, { "lang": "go", @@ -39332,7 +39332,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "source": "atlas api auditing updateAuditingConfiguration --help" }, { "lang": "go", @@ -39399,7 +39399,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "source": "atlas api awsClustersDns getAwscustomDns --help" }, { "lang": "go", @@ -39475,7 +39475,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "source": "atlas api awsClustersDns toggleAwscustomDns --help" }, { "lang": "go", @@ -39552,7 +39552,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "source": "atlas api cloudBackups listExportBuckets --help" }, { "lang": "go", @@ -39638,7 +39638,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "source": "atlas api cloudBackups createExportBucket --help" }, { "lang": "go", @@ -39722,7 +39722,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "source": "atlas api cloudBackups deleteExportBucket --help" }, { "lang": "go", @@ -39801,7 +39801,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "source": "atlas api cloudBackups getExportBucket --help" }, { "lang": "go", @@ -39872,7 +39872,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "source": "atlas api cloudBackups getDataProtectionSettings --help" }, { "lang": "go", @@ -39964,7 +39964,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "source": "atlas api cloudBackups updateDataProtectionSettings --help" }, { "lang": "go", @@ -40031,7 +40031,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "source": "atlas api cloudProviderAccess listCloudProviderAccessRoles --help" }, { "lang": "go", @@ -40111,7 +40111,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess createCloudProviderAccessRole --help" }, { "lang": "go", @@ -40202,7 +40202,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -40281,7 +40281,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess getCloudProviderAccessRole --help" }, { "lang": "go", @@ -40379,7 +40379,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -40465,7 +40465,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "source": "atlas api clusters listClusters --help" }, { "lang": "go", @@ -40555,7 +40555,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "source": "atlas api clusters createCluster --help" }, { "lang": "go", @@ -40651,7 +40651,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "source": "atlas api clusters listCloudProviderRegions --help" }, { "lang": "go", @@ -40741,7 +40741,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "source": "atlas api clusters upgradeSharedCluster --help" }, { "lang": "go", @@ -40831,7 +40831,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "source": "atlas api clusters upgradeSharedClusterToServerless --help" }, { "lang": "go", @@ -40924,7 +40924,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "source": "atlas api clusters deleteCluster --help" }, { "lang": "go", @@ -41008,7 +41008,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "source": "atlas api clusters getCluster --help" }, { "lang": "go", @@ -41107,7 +41107,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "source": "atlas api clusters updateCluster --help" }, { "lang": "go", @@ -41196,7 +41196,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "source": "atlas api cloudBackups listBackupExportJobs --help" }, { "lang": "go", @@ -41290,7 +41290,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "source": "atlas api cloudBackups createBackupExportJob --help" }, { "lang": "go", @@ -41375,7 +41375,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "source": "atlas api cloudBackups getBackupExportJob --help" }, { "lang": "go", @@ -41463,7 +41463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "source": "atlas api cloudBackups listBackupRestoreJobs --help" }, { "lang": "go", @@ -41560,7 +41560,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "source": "atlas api cloudBackups createBackupRestoreJob --help" }, { "lang": "go", @@ -41654,7 +41654,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "source": "atlas api cloudBackups cancelBackupRestoreJob --help" }, { "lang": "go", @@ -41743,7 +41743,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "source": "atlas api cloudBackups getBackupRestoreJob --help" }, { "lang": "go", @@ -41823,7 +41823,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "source": "atlas api cloudBackups deleteAllBackupSchedules --help" }, { "lang": "go", @@ -41902,7 +41902,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "source": "atlas api cloudBackups getBackupSchedule --help" }, { "lang": "go", @@ -41995,7 +41995,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "source": "atlas api cloudBackups updateBackupSchedule --help" }, { "lang": "go", @@ -42087,7 +42087,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "source": "atlas api cloudBackups listReplicaSetBackups --help" }, { "lang": "go", @@ -42178,7 +42178,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "source": "atlas api cloudBackups takeSnapshot --help" }, { "lang": "go", @@ -42269,7 +42269,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "source": "atlas api cloudBackups deleteShardedClusterBackup --help" }, { "lang": "go", @@ -42361,7 +42361,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "source": "atlas api cloudBackups getShardedClusterBackup --help" }, { "lang": "go", @@ -42443,7 +42443,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "source": "atlas api cloudBackups listShardedClusterBackups --help" }, { "lang": "go", @@ -42537,7 +42537,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "source": "atlas api cloudBackups deleteReplicaSetBackup --help" }, { "lang": "go", @@ -42629,7 +42629,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "source": "atlas api cloudBackups getReplicaSetBackup --help" }, { "lang": "go", @@ -42732,7 +42732,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "source": "atlas api cloudBackups updateSnapshotRetention --help" }, { "lang": "go", @@ -42834,7 +42834,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots downloadSharedClusterBackup --help" }, { "lang": "go", @@ -42933,7 +42933,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -43015,7 +43015,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "source": "atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help" }, { "lang": "go", @@ -43109,7 +43109,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -43191,7 +43191,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "source": "atlas api sharedTierSnapshots listSharedClusterBackups --help" }, { "lang": "go", @@ -43285,7 +43285,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots getSharedClusterBackup --help" }, { "lang": "go", @@ -43374,7 +43374,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "source": "atlas api legacyBackup listLegacyBackupCheckpoints --help" }, { "lang": "go", @@ -43472,7 +43472,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "source": "atlas api legacyBackup getLegacyBackupCheckpoint --help" }, { "lang": "go", @@ -43573,7 +43573,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch createAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43679,7 +43679,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesDeprecated --help" }, { "lang": "go", @@ -43779,7 +43779,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43874,7 +43874,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch getAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -43986,7 +43986,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -44071,7 +44071,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "source": "atlas api globalClusters getManagedNamespace --help" }, { "lang": "go", @@ -44156,7 +44156,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "source": "atlas api globalClusters deleteAllCustomZoneMappings --help" }, { "lang": "go", @@ -44253,7 +44253,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "source": "atlas api globalClusters createCustomZoneMapping --help" }, { "lang": "go", @@ -44357,7 +44357,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "source": "atlas api globalClusters deleteManagedNamespace --help" }, { "lang": "go", @@ -44457,7 +44457,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "source": "atlas api globalClusters createManagedNamespace --help" }, { "lang": "go", @@ -44643,7 +44643,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "source": "atlas api rollingIndex createRollingIndex --help" }, { "lang": "go", @@ -44735,7 +44735,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "source": "atlas api onlineArchive listOnlineArchives --help" }, { "lang": "go", @@ -44836,7 +44836,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "source": "atlas api onlineArchive createOnlineArchive --help" }, { "lang": "go", @@ -44955,7 +44955,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "source": "atlas api onlineArchive downloadOnlineArchiveQueryLogs --help" }, { "lang": "go", @@ -45053,7 +45053,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "source": "atlas api onlineArchive deleteOnlineArchive --help" }, { "lang": "go", @@ -45152,7 +45152,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "source": "atlas api onlineArchive getOnlineArchive --help" }, { "lang": "go", @@ -45265,7 +45265,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "source": "atlas api onlineArchive updateOnlineArchive --help" }, { "lang": "go", @@ -45354,7 +45354,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "source": "atlas api clusterOutageSimulation endOutageSimulation --help" }, { "lang": "go", @@ -45441,7 +45441,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "source": "atlas api clusterOutageSimulation getOutageSimulation --help" }, { "lang": "go", @@ -45536,7 +45536,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "source": "atlas api clusterOutageSimulation startOutageSimulation --help" }, { "lang": "go", @@ -45623,7 +45623,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "source": "atlas api clusters getClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -45724,7 +45724,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "source": "atlas api clusters updateClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -45801,7 +45801,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "source": "atlas api clusters testFailover --help" }, { "lang": "go", @@ -45904,7 +45904,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "source": "atlas api legacyBackup listLegacyBackupRestoreJobs --help" }, { "lang": "go", @@ -45996,7 +45996,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup createLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -46091,7 +46091,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup getLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -46174,7 +46174,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "source": "atlas api atlasSearch deleteAtlasSearchDeployment --help" }, { "lang": "go", @@ -46256,7 +46256,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "source": "atlas api atlasSearch getAtlasSearchDeployment --help" }, { "lang": "go", @@ -46352,7 +46352,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "source": "atlas api atlasSearch updateAtlasSearchDeployment --help" }, { "lang": "go", @@ -46448,7 +46448,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "source": "atlas api atlasSearch createAtlasSearchDeployment --help" }, { "lang": "go", @@ -46529,7 +46529,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup getLegacySnapshotSchedule --help" }, { "lang": "go", @@ -46618,7 +46618,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup updateLegacySnapshotSchedule --help" }, { "lang": "go", @@ -46721,7 +46721,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "source": "atlas api legacyBackup listLegacySnapshots --help" }, { "lang": "go", @@ -46816,7 +46816,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "source": "atlas api legacyBackup deleteLegacySnapshot --help" }, { "lang": "go", @@ -46906,7 +46906,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "source": "atlas api legacyBackup getLegacySnapshot --help" }, { "lang": "go", @@ -47007,7 +47007,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "source": "atlas api legacyBackup updateLegacySnapshotRetention --help" }, { "lang": "go", @@ -47086,7 +47086,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "source": "atlas api clusters getClusterStatus --help" }, { "lang": "go", @@ -47213,7 +47213,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "source": "atlas api monitoringAndLogs getHostLogs --help" }, { "lang": "go", @@ -47307,7 +47307,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "source": "atlas api networkPeering listPeeringContainerByCloudProvider --help" }, { "lang": "go", @@ -47395,7 +47395,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "source": "atlas api networkPeering createPeeringContainer --help" }, { "lang": "go", @@ -47471,7 +47471,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "source": "atlas api networkPeering listPeeringContainers --help" }, { "lang": "go", @@ -47560,7 +47560,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "source": "atlas api networkPeering deletePeeringContainer --help" }, { "lang": "go", @@ -47638,7 +47638,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "source": "atlas api networkPeering getPeeringContainer --help" }, { "lang": "go", @@ -47739,7 +47739,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "source": "atlas api networkPeering updatePeeringContainer --help" }, { "lang": "go", @@ -47809,7 +47809,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "source": "atlas api customDatabaseRoles listCustomDatabaseRoles --help" }, { "lang": "go", @@ -47897,7 +47897,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles createCustomDatabaseRole --help" }, { "lang": "go", @@ -47979,7 +47979,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles deleteCustomDatabaseRole --help" }, { "lang": "go", @@ -48056,7 +48056,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles getCustomDatabaseRole --help" }, { "lang": "go", @@ -48153,7 +48153,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles updateCustomDatabaseRole --help" }, { "lang": "go", @@ -48236,7 +48236,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "source": "atlas api dataFederation listFederatedDatabases --help" }, { "lang": "go", @@ -48321,7 +48321,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "source": "atlas api dataFederation createFederatedDatabase --help" }, { "lang": "go", @@ -48397,7 +48397,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "source": "atlas api dataFederation deleteFederatedDatabase --help" }, { "lang": "go", @@ -48474,7 +48474,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "source": "atlas api dataFederation getFederatedDatabase --help" }, { "lang": "go", @@ -48571,7 +48571,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "source": "atlas api dataFederation updateFederatedDatabase --help" }, { "lang": "go", @@ -48653,7 +48653,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimits --help" }, { "lang": "go", @@ -48741,7 +48741,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "source": "atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "go", @@ -48830,7 +48830,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimit --help" }, { "lang": "go", @@ -48933,7 +48933,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "source": "atlas api dataFederation createOneDataFederationQueryLimit --help" }, { "lang": "go", @@ -49039,7 +49039,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "source": "atlas api dataFederation downloadFederatedDatabaseQueryLogs --help" }, { "lang": "go", @@ -49115,7 +49115,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "source": "atlas api databaseUsers listDatabaseUsers --help" }, { "lang": "go", @@ -49355,7 +49355,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "source": "atlas api databaseUsers createDatabaseUser --help" }, { "lang": "go", @@ -49447,7 +49447,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "source": "atlas api databaseUsers deleteDatabaseUser --help" }, { "lang": "go", @@ -49534,7 +49534,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "source": "atlas api databaseUsers getDatabaseUser --help" }, { "lang": "go", @@ -49641,7 +49641,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "source": "atlas api databaseUsers updateDatabaseUser --help" }, { "lang": "go", @@ -49729,7 +49729,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "source": "atlas api x509Authentication listDatabaseUserCertificates --help" }, { "lang": "go", @@ -49831,7 +49831,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "source": "atlas api x509Authentication createDatabaseUserCertificate --help" }, { "lang": "go", @@ -49964,7 +49964,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "source": "atlas api accessTracking listAccessLogsByClusterName --help" }, { "lang": "go", @@ -50094,7 +50094,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "source": "atlas api accessTracking listAccessLogsByHostname --help" }, { "lang": "go", @@ -50161,7 +50161,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help" }, { "lang": "go", @@ -50246,7 +50246,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help" }, { "lang": "go", @@ -50325,7 +50325,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "go", @@ -50413,7 +50413,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -50515,7 +50515,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "go", @@ -50604,7 +50604,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -50747,7 +50747,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "source": "atlas api events listProjectEvents --help" }, { "lang": "go", @@ -50838,7 +50838,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "source": "atlas api events getProjectEvent --help" }, { "lang": "go", @@ -50908,7 +50908,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "source": "atlas api monitoringAndLogs listMetricTypes --help" }, { "lang": "go", @@ -51024,7 +51024,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "source": "atlas api monitoringAndLogs listIndexMetrics --help" }, { "lang": "go", @@ -51143,7 +51143,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "source": "atlas api monitoringAndLogs getIndexMetrics --help" }, { "lang": "go", @@ -51254,7 +51254,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "source": "atlas api monitoringAndLogs getMeasurements --help" }, { "lang": "go", @@ -51336,7 +51336,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "source": "atlas api thirdPartyIntegrations listThirdPartyIntegrations --help" }, { "lang": "go", @@ -51431,7 +51431,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help" }, { "lang": "go", @@ -51524,7 +51524,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations getThirdPartyIntegration --help" }, { "lang": "go", @@ -51640,7 +51640,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations createThirdPartyIntegration --help" }, { "lang": "go", @@ -51753,7 +51753,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations updateThirdPartyIntegration --help" }, { "lang": "go", @@ -51833,7 +51833,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "source": "atlas api projects listProjectInvitations --help" }, { "lang": "go", @@ -51917,7 +51917,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "source": "atlas api projects updateProjectInvitation --help" }, { "lang": "go", @@ -51995,7 +51995,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "source": "atlas api projects createProjectInvitation --help" }, { "lang": "go", @@ -52073,7 +52073,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "source": "atlas api projects deleteProjectInvitation --help" }, { "lang": "go", @@ -52155,7 +52155,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "source": "atlas api projects getProjectInvitation --help" }, { "lang": "go", @@ -52248,7 +52248,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "source": "atlas api projects updateProjectInvitationById --help" }, { "lang": "go", @@ -52319,7 +52319,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "source": "atlas api projects returnAllIpaddresses --help" }, { "lang": "go", @@ -52398,7 +52398,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "source": "atlas api projects listProjectLimits --help" }, { "lang": "go", @@ -52495,7 +52495,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "source": "atlas api projects deleteProjectLimit --help" }, { "lang": "go", @@ -52593,7 +52593,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "source": "atlas api projects getProjectLimit --help" }, { "lang": "go", @@ -52702,7 +52702,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "source": "atlas api projects setProjectLimit --help" }, { "lang": "go", @@ -52792,7 +52792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "source": "atlas api cloudMigrationService createPushMigration --help" }, { "lang": "go", @@ -52883,7 +52883,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "source": "atlas api cloudMigrationService validateMigration --help" }, { "lang": "go", @@ -52970,7 +52970,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "source": "atlas api cloudMigrationService getValidationStatus --help" }, { "lang": "go", @@ -53046,7 +53046,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "source": "atlas api cloudMigrationService getPushMigration --help" }, { "lang": "go", @@ -53122,7 +53122,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "source": "atlas api cloudMigrationService cutoverMigration --help" }, { "lang": "go", @@ -53186,7 +53186,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "source": "atlas api maintenanceWindows resetMaintenanceWindow --help" }, { "lang": "go", @@ -53251,7 +53251,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "source": "atlas api maintenanceWindows getMaintenanceWindow --help" }, { "lang": "go", @@ -53327,7 +53327,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "source": "atlas api maintenanceWindows updateMaintenanceWindow --help" }, { "lang": "go", @@ -53391,7 +53391,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "source": "atlas api maintenanceWindows toggleMaintenanceAutoDefer --help" }, { "lang": "go", @@ -53455,7 +53455,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "source": "atlas api maintenanceWindows deferMaintenanceWindow --help" }, { "lang": "go", @@ -53522,7 +53522,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "source": "atlas api performanceAdvisor getManagedSlowMs --help" }, { "lang": "go", @@ -53589,7 +53589,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor disableSlowOperationThresholding --help" }, { "lang": "go", @@ -53656,7 +53656,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor enableSlowOperationThresholding --help" }, { "lang": "go", @@ -53784,7 +53784,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "source": "atlas api projects getProjectLtsversions --help" }, { "lang": "go", @@ -53877,7 +53877,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "source": "atlas api networkPeering listPeeringConnections --help" }, { "lang": "go", @@ -53966,7 +53966,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "source": "atlas api networkPeering createPeeringConnection --help" }, { "lang": "go", @@ -54048,7 +54048,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "source": "atlas api networkPeering deletePeeringConnection --help" }, { "lang": "go", @@ -54128,7 +54128,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "source": "atlas api networkPeering getPeeringConnection --help" }, { "lang": "go", @@ -54225,7 +54225,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "source": "atlas api networkPeering updatePeeringConnection --help" }, { "lang": "go", @@ -54295,7 +54295,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "source": "atlas api dataLakePipelines listPipelines --help" }, { "lang": "go", @@ -54374,7 +54374,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "source": "atlas api dataLakePipelines createPipeline --help" }, { "lang": "go", @@ -54453,7 +54453,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "source": "atlas api dataLakePipelines deletePipeline --help" }, { "lang": "go", @@ -54533,7 +54533,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "source": "atlas api dataLakePipelines getPipeline --help" }, { "lang": "go", @@ -54627,7 +54627,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "source": "atlas api dataLakePipelines updatePipeline --help" }, { "lang": "go", @@ -54712,7 +54712,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "source": "atlas api dataLakePipelines listPipelineSchedules --help" }, { "lang": "go", @@ -54813,7 +54813,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "source": "atlas api dataLakePipelines listPipelineSnapshots --help" }, { "lang": "go", @@ -54895,7 +54895,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "source": "atlas api dataLakePipelines pausePipeline --help" }, { "lang": "go", @@ -54977,7 +54977,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "source": "atlas api dataLakePipelines resumePipeline --help" }, { "lang": "go", @@ -55078,7 +55078,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "source": "atlas api dataLakePipelines listPipelineRuns --help" }, { "lang": "go", @@ -55173,7 +55173,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "source": "atlas api dataLakePipelines deletePipelineRunDataset --help" }, { "lang": "go", @@ -55266,7 +55266,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "source": "atlas api dataLakePipelines getPipelineRun --help" }, { "lang": "go", @@ -55359,7 +55359,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "source": "atlas api dataLakePipelines triggerSnapshotIngestion --help" }, { "lang": "go", @@ -55441,7 +55441,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "source": "atlas api privateEndpointServices createPrivateEndpointService --help" }, { "lang": "go", @@ -55511,7 +55511,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -55590,7 +55590,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -55671,7 +55671,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "source": "atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help" }, { "lang": "go", @@ -55762,7 +55762,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -55852,7 +55852,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -55940,7 +55940,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -56039,7 +56039,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -56124,7 +56124,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "source": "atlas api privateEndpointServices listPrivateEndpointServices --help" }, { "lang": "go", @@ -56218,7 +56218,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "source": "atlas api privateEndpointServices deletePrivateEndpointService --help" }, { "lang": "go", @@ -56313,7 +56313,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "source": "atlas api privateEndpointServices getPrivateEndpointService --help" }, { "lang": "go", @@ -56427,7 +56427,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "source": "atlas api privateEndpointServices createPrivateEndpoint --help" }, { "lang": "go", @@ -56531,7 +56531,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "source": "atlas api privateEndpointServices deletePrivateEndpoint --help" }, { "lang": "go", @@ -56636,7 +56636,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "source": "atlas api privateEndpointServices getPrivateEndpoint --help" }, { "lang": "go", @@ -56708,7 +56708,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "source": "atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "go", @@ -56792,7 +56792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "source": "atlas api networkPeering disablePeering --help" }, { "lang": "go", @@ -56874,7 +56874,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "source": "atlas api dataFederation listDataFederationPrivateEndpoints --help" }, { "lang": "go", @@ -56953,7 +56953,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation createDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -57035,7 +57035,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation deleteDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -57118,7 +57118,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation getDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -57194,7 +57194,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "source": "atlas api monitoringAndLogs listAtlasProcesses --help" }, { "lang": "go", @@ -57272,7 +57272,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "source": "atlas api monitoringAndLogs getAtlasProcess --help" }, { "lang": "go", @@ -57359,7 +57359,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "source": "atlas api monitoringAndLogs listDatabases --help" }, { "lang": "go", @@ -57446,7 +57446,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "source": "atlas api monitoringAndLogs getDatabase --help" }, { "lang": "go", @@ -57572,7 +57572,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "source": "atlas api monitoringAndLogs getDatabaseMeasurements --help" }, { "lang": "go", @@ -57659,7 +57659,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "source": "atlas api monitoringAndLogs listDiskPartitions --help" }, { "lang": "go", @@ -57743,7 +57743,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "source": "atlas api monitoringAndLogs listDiskMeasurements --help" }, { "lang": "go", @@ -57878,7 +57878,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "source": "atlas api monitoringAndLogs getDiskMeasurements --help" }, { "lang": "go", @@ -58120,7 +58120,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "source": "atlas api monitoringAndLogs getHostMeasurements --help" }, { "lang": "go", @@ -58216,7 +58216,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "source": "atlas api performanceAdvisor listSlowQueryNamespaces --help" }, { "lang": "go", @@ -58336,7 +58336,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "source": "atlas api performanceAdvisor listSlowQueries --help" }, { "lang": "go", @@ -58472,7 +58472,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "source": "atlas api performanceAdvisor listSuggestedIndexes --help" }, { "lang": "go", @@ -58545,7 +58545,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport deletePushBasedLogConfiguration --help" }, { "lang": "go", @@ -58616,7 +58616,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport getPushBasedLogConfiguration --help" }, { "lang": "go", @@ -58699,7 +58699,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport updatePushBasedLogConfiguration --help" }, { "lang": "go", @@ -58782,7 +58782,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport createPushBasedLogConfiguration --help" }, { "lang": "go", @@ -58864,7 +58864,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "source": "atlas api clusters loadSampleDataset --help" }, { "lang": "go", @@ -58940,7 +58940,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "source": "atlas api clusters getSampleDatasetLoadStatus --help" }, { "lang": "go", @@ -59016,7 +59016,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "source": "atlas api serverlessInstances listServerlessInstances --help" }, { "lang": "go", @@ -59098,7 +59098,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "source": "atlas api serverlessInstances createServerlessInstance --help" }, { "lang": "go", @@ -59189,7 +59189,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "source": "atlas api cloudBackups listServerlessBackupRestoreJobs --help" }, { "lang": "go", @@ -59286,7 +59286,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups createServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -59380,7 +59380,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups getServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -59471,7 +59471,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "source": "atlas api cloudBackups listServerlessBackups --help" }, { "lang": "go", @@ -59563,7 +59563,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "source": "atlas api cloudBackups getServerlessBackup --help" }, { "lang": "go", @@ -59642,7 +59642,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor getServerlessAutoIndexing --help" }, { "lang": "go", @@ -59725,7 +59725,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor setServerlessAutoIndexing --help" }, { "lang": "go", @@ -59810,7 +59810,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "source": "atlas api serverlessInstances deleteServerlessInstance --help" }, { "lang": "go", @@ -59893,7 +59893,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "source": "atlas api serverlessInstances getServerlessInstance --help" }, { "lang": "go", @@ -59984,7 +59984,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "source": "atlas api serverlessInstances updateServerlessInstance --help" }, { "lang": "go", @@ -60060,7 +60060,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "source": "atlas api groups listProjectServiceAccounts --help" }, { "lang": "go", @@ -60140,7 +60140,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "source": "atlas api groups createProjectServiceAccount --help" }, { "lang": "go", @@ -60220,7 +60220,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "source": "atlas api groups deleteProjectServiceAccount --help" }, { "lang": "go", @@ -60297,7 +60297,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "source": "atlas api groups getProjectServiceAccount --help" }, { "lang": "go", @@ -60388,7 +60388,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "source": "atlas api groups updateProjectServiceAccount --help" }, { "lang": "go", @@ -60481,7 +60481,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "source": "atlas api groups addProjectServiceAccount --help" }, { "lang": "go", @@ -60554,7 +60554,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "source": "atlas api projects getProjectSettings --help" }, { "lang": "go", @@ -60636,7 +60636,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "source": "atlas api projects updateProjectSettings --help" }, { "lang": "go", @@ -60709,7 +60709,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "source": "atlas api streams listStreamInstances --help" }, { "lang": "go", @@ -60788,7 +60788,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "source": "atlas api streams createStreamInstance --help" }, { "lang": "go", @@ -60870,7 +60870,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "source": "atlas api streams deleteStreamInstance --help" }, { "lang": "go", @@ -60955,7 +60955,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "source": "atlas api streams getStreamInstance --help" }, { "lang": "go", @@ -61049,7 +61049,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "source": "atlas api streams updateStreamInstance --help" }, { "lang": "go", @@ -61158,7 +61158,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "source": "atlas api streams downloadStreamTenantAuditLogs --help" }, { "lang": "go", @@ -61243,7 +61243,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "source": "atlas api streams listStreamConnections --help" }, { "lang": "go", @@ -61334,7 +61334,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "source": "atlas api streams createStreamConnection --help" }, { "lang": "go", @@ -61425,7 +61425,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "source": "atlas api streams deleteStreamConnection --help" }, { "lang": "go", @@ -61508,7 +61508,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "source": "atlas api streams getStreamConnection --help" }, { "lang": "go", @@ -61611,7 +61611,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "source": "atlas api streams updateStreamConnection --help" }, { "lang": "go", @@ -61696,7 +61696,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "source": "atlas api teams listProjectTeams --help" }, { "lang": "go", @@ -61788,7 +61788,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "source": "atlas api teams addAllTeamsToProject --help" }, { "lang": "go", @@ -61874,7 +61874,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "source": "atlas api teams removeProjectTeam --help" }, { "lang": "go", @@ -61975,7 +61975,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "source": "atlas api teams updateTeamRoles --help" }, { "lang": "go", @@ -62042,7 +62042,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "source": "atlas api ldapConfiguration getLdapconfiguration --help" }, { "lang": "go", @@ -62121,7 +62121,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "source": "atlas api ldapConfiguration saveLdapconfiguration --help" }, { "lang": "go", @@ -62185,7 +62185,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "source": "atlas api x509Authentication disableCustomerManagedX509 --help" }, { "lang": "go", @@ -62252,7 +62252,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "source": "atlas api ldapConfiguration deleteLdapconfiguration --help" }, { "lang": "go", @@ -62333,7 +62333,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "source": "atlas api ldapConfiguration verifyLdapconfiguration --help" }, { "lang": "go", @@ -62412,7 +62412,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "source": "atlas api ldapConfiguration getLdapconfigurationStatus --help" }, { "lang": "go", @@ -62506,7 +62506,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "source": "atlas api projects listProjectUsers --help" }, { "lang": "go", @@ -62588,7 +62588,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "source": "atlas api projects removeProjectUser --help" }, { "lang": "go", @@ -62684,7 +62684,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "source": "atlas api projects updateProjectRoles --help" }, { "lang": "go", @@ -62774,7 +62774,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "source": "atlas api organizations listOrganizations --help" }, { "lang": "go", @@ -62859,7 +62859,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "source": "atlas api organizations createOrganization --help" }, { "lang": "go", @@ -62935,7 +62935,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "source": "atlas api organizations deleteOrganization --help" }, { "lang": "go", @@ -63009,7 +63009,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "source": "atlas api organizations getOrganization --help" }, { "lang": "go", @@ -63094,7 +63094,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "source": "atlas api organizations renameOrganization --help" }, { "lang": "go", @@ -63174,7 +63174,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "source": "atlas api programmaticApiKeys listApiKeys --help" }, { "lang": "go", @@ -63254,7 +63254,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "source": "atlas api programmaticApiKeys createApiKey --help" }, { "lang": "go", @@ -63337,7 +63337,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "source": "atlas api programmaticApiKeys deleteApiKey --help" }, { "lang": "go", @@ -63418,7 +63418,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "source": "atlas api programmaticApiKeys getApiKey --help" }, { "lang": "go", @@ -63513,7 +63513,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "source": "atlas api programmaticApiKeys updateApiKey --help" }, { "lang": "go", @@ -63605,7 +63605,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "source": "atlas api programmaticApiKeys listApiKeyAccessListsEntries --help" }, { "lang": "go", @@ -63711,7 +63711,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys createApiKeyAccessList --help" }, { "lang": "go", @@ -63811,7 +63811,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "source": "atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help" }, { "lang": "go", @@ -63906,7 +63906,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys getApiKeyAccessList --help" }, { "lang": "go", @@ -63984,7 +63984,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "source": "atlas api invoices createCostExplorerQueryProcess --help" }, { "lang": "go", @@ -64075,7 +64075,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "source": "atlas api invoices createCostExplorerQueryProcess1 --help" }, { "lang": "go", @@ -64190,7 +64190,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "source": "atlas api events listOrganizationEvents --help" }, { "lang": "go", @@ -64281,7 +64281,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "source": "atlas api events getOrganizationEvent --help" }, { "lang": "go", @@ -64354,7 +64354,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "source": "atlas api federatedAuthentication getFederationSettings --help" }, { "lang": "go", @@ -64444,7 +64444,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "source": "atlas api organizations listOrganizationProjects --help" }, { "lang": "go", @@ -64529,7 +64529,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "source": "atlas api organizations listOrganizationInvitations --help" }, { "lang": "go", @@ -64611,7 +64611,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "source": "atlas api organizations updateOrganizationInvitation --help" }, { "lang": "go", @@ -64693,7 +64693,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "source": "atlas api organizations createOrganizationInvitation --help" }, { "lang": "go", @@ -64775,7 +64775,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "source": "atlas api organizations deleteOrganizationInvitation --help" }, { "lang": "go", @@ -64855,7 +64855,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "source": "atlas api organizations getOrganizationInvitation --help" }, { "lang": "go", @@ -64949,7 +64949,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "source": "atlas api organizations updateOrganizationInvitationById --help" }, { "lang": "go", @@ -65107,7 +65107,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "source": "atlas api invoices listInvoices --help" }, { "lang": "go", @@ -65177,7 +65177,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "source": "atlas api invoices listPendingInvoices --help" }, { "lang": "go", @@ -65265,7 +65265,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "source": "atlas api invoices getInvoice --help" }, { "lang": "go", @@ -65346,7 +65346,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "source": "atlas api invoices downloadInvoiceCsv --help" }, { "lang": "go", @@ -65419,7 +65419,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "source": "atlas api cloudMigrationService listSourceProjects --help" }, { "lang": "go", @@ -65486,7 +65486,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "source": "atlas api cloudMigrationService deleteLinkToken --help" }, { "lang": "go", @@ -65565,7 +65565,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "source": "atlas api cloudMigrationService createLinkToken --help" }, { "lang": "go", @@ -65641,7 +65641,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "source": "atlas api organizations listServiceAccounts --help" }, { "lang": "go", @@ -65720,7 +65720,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "source": "atlas api organizations createServiceAccount --help" }, { "lang": "go", @@ -65796,7 +65796,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "source": "atlas api organizations deleteServiceAccount --help" }, { "lang": "go", @@ -65873,7 +65873,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "source": "atlas api organizations getServiceAccount --help" }, { "lang": "go", @@ -65964,7 +65964,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "source": "atlas api organizations updateServiceAccount --help" }, { "lang": "go", @@ -66049,7 +66049,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "source": "atlas api organizations listServiceAccountProjects --help" }, { "lang": "go", @@ -66139,7 +66139,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "source": "atlas api organizations createServiceAccountSecret --help" }, { "lang": "go", @@ -66224,7 +66224,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "source": "atlas api organizations deleteServiceAccountSecret --help" }, { "lang": "go", @@ -66297,7 +66297,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "source": "atlas api organizations getOrganizationSettings --help" }, { "lang": "go", @@ -66379,7 +66379,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "source": "atlas api organizations updateOrganizationSettings --help" }, { "lang": "go", @@ -66465,7 +66465,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "source": "atlas api teams listOrganizationTeams --help" }, { "lang": "go", @@ -66554,7 +66554,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "source": "atlas api teams createTeam --help" }, { "lang": "go", @@ -66640,7 +66640,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "source": "atlas api teams getTeamByName --help" }, { "lang": "go", @@ -66729,7 +66729,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "source": "atlas api teams deleteTeam --help" }, { "lang": "go", @@ -66816,7 +66816,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "source": "atlas api teams getTeamById --help" }, { "lang": "go", @@ -66917,7 +66917,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "source": "atlas api teams renameTeam --help" }, { "lang": "go", @@ -67015,7 +67015,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "source": "atlas api teams listTeamUsers --help" }, { "lang": "go", @@ -67119,7 +67119,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "source": "atlas api teams addTeamUser --help" }, { "lang": "go", @@ -67217,7 +67217,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "source": "atlas api teams removeTeamUser --help" }, { "lang": "go", @@ -67299,7 +67299,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "source": "atlas api organizations listOrganizationUsers --help" }, { "lang": "go", @@ -67384,7 +67384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "source": "atlas api organizations removeOrganizationUser --help" }, { "lang": "go", @@ -67480,7 +67480,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "source": "atlas api organizations updateOrganizationRoles --help" }, { "lang": "go", @@ -67558,7 +67558,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUser --help" + "source": "atlas api mongoDbCloudUsers createUser --help" }, { "lang": "go", @@ -67635,7 +67635,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "source": "atlas api mongoDbCloudUsers getUserByUsername --help" }, { "lang": "go", @@ -67714,7 +67714,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUser --help" + "source": "atlas api mongoDbCloudUsers getUser --help" }, { "lang": "go", 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 6de133d77c..404368f4a7 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 @@ -29080,7 +29080,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSystemStatus --help + source: atlas api root getSystemStatus --help - label: Go lang: go source: | @@ -29150,7 +29150,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help + source: atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help - label: Go lang: go source: | @@ -29221,7 +29221,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClustersForAllProjects --help + source: atlas api clusters listClustersForAllProjects --help - label: Go lang: go source: | @@ -29292,7 +29292,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listEventTypes --help + source: atlas api events listEventTypes --help - label: Go lang: go source: | @@ -29361,7 +29361,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederationApp --help + source: atlas api federatedAuthentication deleteFederationApp --help - label: Go lang: go source: | @@ -29435,7 +29435,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listConnectedOrgConfigs --help + source: atlas api federatedAuthentication listConnectedOrgConfigs --help - label: Go lang: go source: | @@ -29517,7 +29517,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeConnectedOrgConfig --help + source: atlas api federatedAuthentication removeConnectedOrgConfig --help - label: Go lang: go source: | @@ -29598,7 +29598,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getConnectedOrgConfig --help + source: atlas api federatedAuthentication getConnectedOrgConfig --help - label: Go lang: go source: | @@ -29686,7 +29686,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateConnectedOrgConfig --help + source: atlas api federatedAuthentication updateConnectedOrgConfig --help - label: Go lang: go source: | @@ -29763,7 +29763,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listRoleMappings --help + source: atlas api federatedAuthentication listRoleMappings --help - label: Go lang: go source: | @@ -29842,7 +29842,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRoleMapping --help + source: atlas api federatedAuthentication createRoleMapping --help - label: Go lang: go source: | @@ -29927,7 +29927,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteRoleMapping --help + source: atlas api federatedAuthentication deleteRoleMapping --help - label: Go lang: go source: | @@ -30009,7 +30009,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRoleMapping --help + source: atlas api federatedAuthentication getRoleMapping --help - label: Go lang: go source: | @@ -30098,7 +30098,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateRoleMapping --help + source: atlas api federatedAuthentication updateRoleMapping --help - label: Go lang: go source: | @@ -30198,7 +30198,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIdentityProviders --help + source: atlas api federatedAuthentication listIdentityProviders --help - label: Go lang: go source: | @@ -30280,7 +30280,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProvider --help + source: atlas api federatedAuthentication getIdentityProvider --help - label: Go lang: go source: | @@ -30370,7 +30370,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateIdentityProvider --help + source: atlas api federatedAuthentication updateIdentityProvider --help - label: Go lang: go source: | @@ -30447,7 +30447,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProviderMetadata --help + source: atlas api federatedAuthentication getIdentityProviderMetadata --help - label: Go lang: go source: | @@ -30520,7 +30520,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjects --help + source: atlas api projects listProjects --help - label: Go lang: go source: | @@ -30610,7 +30610,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProject --help + source: atlas api projects createProject --help - label: Go lang: go source: | @@ -30685,7 +30685,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProject --help + source: atlas api projects deleteProject --help - label: Go lang: go source: | @@ -30755,7 +30755,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProject --help + source: atlas api projects getProject --help - label: Go lang: go source: | @@ -30836,7 +30836,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProject --help + source: atlas api projects updateProject --help - label: Go lang: go source: | @@ -30921,7 +30921,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToProject --help + source: atlas api projects addUserToProject --help - label: Go lang: go source: | @@ -31000,7 +31000,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectIpAccessLists --help + source: atlas api projectIpAccessList listProjectIpAccessLists --help - label: Go lang: go source: | @@ -31087,7 +31087,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectIpAccessList --help + source: atlas api projectIpAccessList createProjectIpAccessList --help - label: Go lang: go source: | @@ -31178,7 +31178,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectIpAccessList --help + source: atlas api projectIpAccessList deleteProjectIpAccessList --help - label: Go lang: go source: | @@ -31261,7 +31261,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpList --help + source: atlas api projectIpAccessList getProjectIpList --help - label: Go lang: go source: | @@ -31344,7 +31344,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpAccessListStatus --help + source: atlas api projectIpAccessList getProjectIpAccessListStatus --help - label: Go lang: go source: | @@ -31419,7 +31419,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurations --help + source: atlas api alertConfigurations listAlertConfigurations --help - label: Go lang: go source: | @@ -31499,7 +31499,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAlertConfiguration --help + source: atlas api alertConfigurations createAlertConfiguration --help - label: Go lang: go source: | @@ -31585,7 +31585,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAlertConfiguration --help + source: atlas api alertConfigurations deleteAlertConfiguration --help - label: Go lang: go source: | @@ -31668,7 +31668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlertConfiguration --help + source: atlas api alertConfigurations getAlertConfiguration --help - label: Go lang: go source: | @@ -31760,7 +31760,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAlertConfiguration --help + source: atlas api alertConfigurations toggleAlertConfiguration --help - label: Go lang: go source: | @@ -31858,7 +31858,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAlertConfiguration --help + source: atlas api alertConfigurations updateAlertConfiguration --help - label: Go lang: go source: | @@ -31949,7 +31949,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertsByAlertConfigurationId --help + source: atlas api alerts listAlertsByAlertConfigurationId --help - label: Go lang: go source: | @@ -32035,7 +32035,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlerts --help + source: atlas api alerts listAlerts --help - label: Go lang: go source: | @@ -32118,7 +32118,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlert --help + source: atlas api alerts getAlert --help - label: Go lang: go source: | @@ -32210,7 +32210,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acknowledgeAlert --help + source: atlas api alerts acknowledgeAlert --help - label: Go lang: go source: | @@ -32301,7 +32301,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationsByAlertId --help + source: atlas api alertConfigurations listAlertConfigurationsByAlertId --help - label: Go lang: go source: | @@ -32376,7 +32376,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectApiKeys --help + source: atlas api programmaticApiKeys listProjectApiKeys --help - label: Go lang: go source: | @@ -32451,7 +32451,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectApiKey --help + source: atlas api programmaticApiKeys createProjectApiKey --help - label: Go lang: go source: | @@ -32538,7 +32538,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectApiKey --help + source: atlas api programmaticApiKeys removeProjectApiKey --help - label: Go lang: go source: | @@ -32627,7 +32627,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKeyRoles --help + source: atlas api programmaticApiKeys updateApiKeyRoles --help - label: Go lang: go source: | @@ -32717,7 +32717,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectApiKey --help + source: atlas api programmaticApiKeys addProjectApiKey --help - label: Go lang: go source: | @@ -32790,7 +32790,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAuditingConfiguration --help + source: atlas api auditing getAuditingConfiguration --help - label: Go lang: go source: | @@ -32867,7 +32867,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAuditingConfiguration --help + source: atlas api auditing updateAuditingConfiguration --help - label: Go lang: go source: | @@ -32940,7 +32940,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAWSCustomDNS --help + source: atlas api awsClustersDns getAwscustomDns --help - label: Go lang: go source: | @@ -33015,7 +33015,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAWSCustomDNS --help + source: atlas api awsClustersDns toggleAwscustomDns --help - label: Go lang: go source: | @@ -33092,7 +33092,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listExportBuckets --help + source: atlas api cloudBackups listExportBuckets --help - label: Go lang: go source: | @@ -33175,7 +33175,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createExportBucket --help + source: atlas api cloudBackups createExportBucket --help - label: Go lang: go source: | @@ -33262,7 +33262,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteExportBucket --help + source: atlas api cloudBackups deleteExportBucket --help - label: Go lang: go source: | @@ -33342,7 +33342,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getExportBucket --help + source: atlas api cloudBackups getExportBucket --help - label: Go lang: go source: | @@ -33414,7 +33414,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataProtectionSettings --help + source: atlas api cloudBackups getDataProtectionSettings --help - label: Go lang: go source: | @@ -33500,7 +33500,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDataProtectionSettings --help + source: atlas api cloudBackups updateDataProtectionSettings --help - label: Go lang: go source: | @@ -33573,7 +33573,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderAccessRoles --help + source: atlas api cloudProviderAccess listCloudProviderAccessRoles --help - label: Go lang: go source: | @@ -33651,7 +33651,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCloudProviderAccessRole --help + source: atlas api cloudProviderAccess createCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33741,7 +33741,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33819,7 +33819,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCloudProviderAccessRole --help + source: atlas api cloudProviderAccess getCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33910,7 +33910,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -33993,7 +33993,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusters --help + source: atlas api clusters listClusters --help - label: Go lang: go source: | @@ -34078,7 +34078,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCluster --help + source: atlas api clusters createCluster --help - label: Go lang: go source: | @@ -34170,7 +34170,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCluster --help + source: atlas api clusters deleteCluster --help - label: Go lang: go source: | @@ -34252,7 +34252,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCluster --help + source: atlas api clusters getCluster --help - label: Go lang: go source: | @@ -34344,7 +34344,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCluster --help + source: atlas api clusters updateCluster --help - label: Go lang: go source: | @@ -34430,7 +34430,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupExportJobs --help + source: atlas api cloudBackups listBackupExportJobs --help - label: Go lang: go source: | @@ -34519,7 +34519,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupExportJob --help + source: atlas api cloudBackups createBackupExportJob --help - label: Go lang: go source: | @@ -34606,7 +34606,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupExportJob --help + source: atlas api cloudBackups getBackupExportJob --help - label: Go lang: go source: | @@ -34687,7 +34687,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupRestoreJobs --help + source: atlas api cloudBackups listBackupRestoreJobs --help - label: Go lang: go source: | @@ -34780,7 +34780,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupRestoreJob --help + source: atlas api cloudBackups createBackupRestoreJob --help - label: Go lang: go source: | @@ -34873,7 +34873,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cancelBackupRestoreJob --help + source: atlas api cloudBackups cancelBackupRestoreJob --help - label: Go lang: go source: | @@ -34959,7 +34959,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupRestoreJob --help + source: atlas api cloudBackups getBackupRestoreJob --help - label: Go lang: go source: | @@ -35039,7 +35039,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllBackupSchedules --help + source: atlas api cloudBackups deleteAllBackupSchedules --help - label: Go lang: go source: | @@ -35118,7 +35118,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupSchedule --help + source: atlas api cloudBackups getBackupSchedule --help - label: Go lang: go source: | @@ -35209,7 +35209,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateBackupSchedule --help + source: atlas api cloudBackups updateBackupSchedule --help - label: Go lang: go source: | @@ -35297,7 +35297,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listReplicaSetBackups --help + source: atlas api cloudBackups listReplicaSetBackups --help - label: Go lang: go source: | @@ -35386,7 +35386,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api takeSnapshot --help + source: atlas api cloudBackups takeSnapshot --help - label: Go lang: go source: | @@ -35479,7 +35479,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteReplicaSetBackup --help + source: atlas api cloudBackups deleteReplicaSetBackup --help - label: Go lang: go source: | @@ -35567,7 +35567,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getReplicaSetBackup --help + source: atlas api cloudBackups getReplicaSetBackup --help - label: Go lang: go source: | @@ -35662,7 +35662,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateSnapshotRetention --help + source: atlas api cloudBackups updateSnapshotRetention --help - label: Go lang: go source: | @@ -35753,7 +35753,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteShardedClusterBackup --help + source: atlas api cloudBackups deleteShardedClusterBackup --help - label: Go lang: go source: | @@ -35841,7 +35841,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getShardedClusterBackup --help + source: atlas api cloudBackups getShardedClusterBackup --help - label: Go lang: go source: | @@ -35921,7 +35921,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listShardedClusterBackups --help + source: atlas api cloudBackups listShardedClusterBackups --help - label: Go lang: go source: | @@ -36014,7 +36014,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadSharedClusterBackup --help + source: atlas api sharedTierSnapshots downloadSharedClusterBackup --help - label: Go lang: go source: | @@ -36109,7 +36109,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -36193,7 +36193,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackupRestoreJobs --help + source: atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help - label: Go lang: go source: | @@ -36282,7 +36282,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -36362,7 +36362,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackups --help + source: atlas api sharedTierSnapshots listSharedClusterBackups --help - label: Go lang: go source: | @@ -36451,7 +36451,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackup --help + source: atlas api sharedTierSnapshots getSharedClusterBackup --help - label: Go lang: go source: | @@ -36533,7 +36533,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupCheckpoints --help + source: atlas api legacyBackup listLegacyBackupCheckpoints --help - label: Go lang: go source: | @@ -36625,7 +36625,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupCheckpoint --help + source: atlas api legacyBackup getLegacyBackupCheckpoint --help - label: Go lang: go source: | @@ -36718,7 +36718,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch createAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -36819,7 +36819,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesDeprecated --help + source: atlas api atlasSearch listAtlasSearchIndexesDeprecated --help - label: Go lang: go source: | @@ -36913,7 +36913,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -37004,7 +37004,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch getAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -37106,7 +37106,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch updateAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -37193,7 +37193,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedNamespace --help + source: atlas api globalClusters getManagedNamespace --help - label: Go lang: go source: | @@ -37276,7 +37276,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllCustomZoneMappings --help + source: atlas api globalClusters deleteAllCustomZoneMappings --help - label: Go lang: go source: | @@ -37367,7 +37367,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomZoneMapping --help + source: atlas api globalClusters createCustomZoneMapping --help - label: Go lang: go source: | @@ -37466,7 +37466,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteManagedNamespace --help + source: atlas api globalClusters deleteManagedNamespace --help - label: Go lang: go source: | @@ -37559,7 +37559,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createManagedNamespace --help + source: atlas api globalClusters createManagedNamespace --help - label: Go lang: go source: | @@ -37717,7 +37717,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRollingIndex --help + source: atlas api rollingIndex createRollingIndex --help - label: Go lang: go source: | @@ -37805,7 +37805,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOnlineArchives --help + source: atlas api onlineArchive listOnlineArchives --help - label: Go lang: go source: | @@ -37898,7 +37898,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOnlineArchive --help + source: atlas api onlineArchive createOnlineArchive --help - label: Go lang: go source: | @@ -37994,7 +37994,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOnlineArchive --help + source: atlas api onlineArchive deleteOnlineArchive --help - label: Go lang: go source: | @@ -38087,7 +38087,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOnlineArchive --help + source: atlas api onlineArchive getOnlineArchive --help - label: Go lang: go source: | @@ -38189,7 +38189,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOnlineArchive --help + source: atlas api onlineArchive updateOnlineArchive --help - label: Go lang: go source: | @@ -38301,7 +38301,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadOnlineArchiveQueryLogs --help + source: atlas api onlineArchive downloadOnlineArchiveQueryLogs --help - label: Go lang: go source: | @@ -38388,7 +38388,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api endOutageSimulation --help + source: atlas api clusterOutageSimulation endOutageSimulation --help - label: Go lang: go source: | @@ -38472,7 +38472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOutageSimulation --help + source: atlas api clusterOutageSimulation getOutageSimulation --help - label: Go lang: go source: | @@ -38561,7 +38561,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startOutageSimulation --help + source: atlas api clusterOutageSimulation startOutageSimulation --help - label: Go lang: go source: | @@ -38649,7 +38649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterAdvancedConfiguration --help + source: atlas api clusters getClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -38743,7 +38743,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help + source: atlas api clusters updateClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -38824,7 +38824,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api testFailover --help + source: atlas api clusters testFailover --help - label: Go lang: go source: | @@ -38923,7 +38923,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupRestoreJobs --help + source: atlas api legacyBackup listLegacyBackupRestoreJobs --help - label: Go lang: go source: | @@ -39010,7 +39010,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLegacyBackupRestoreJob --help + source: atlas api legacyBackup createLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -39107,7 +39107,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupRestoreJob --help + source: atlas api legacyBackup getLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -39188,7 +39188,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchDeployment --help + source: atlas api atlasSearch deleteAtlasSearchDeployment --help - label: Go lang: go source: | @@ -39269,7 +39269,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchDeployment --help + source: atlas api atlasSearch getAtlasSearchDeployment --help - label: Go lang: go source: | @@ -39359,7 +39359,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchDeployment --help + source: atlas api atlasSearch updateAtlasSearchDeployment --help - label: Go lang: go source: | @@ -39453,7 +39453,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchDeployment --help + source: atlas api atlasSearch createAtlasSearchDeployment --help - label: Go lang: go source: | @@ -39540,7 +39540,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshotSchedule --help + source: atlas api legacyBackup getLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -39628,7 +39628,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + source: atlas api legacyBackup updateLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -39724,7 +39724,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacySnapshots --help + source: atlas api legacyBackup listLegacySnapshots --help - label: Go lang: go source: | @@ -39814,7 +39814,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLegacySnapshot --help + source: atlas api legacyBackup deleteLegacySnapshot --help - label: Go lang: go source: | @@ -39901,7 +39901,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshot --help + source: atlas api legacyBackup getLegacySnapshot --help - label: Go lang: go source: | @@ -39995,7 +39995,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotRetention --help + source: atlas api legacyBackup updateLegacySnapshotRetention --help - label: Go lang: go source: | @@ -40077,7 +40077,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterStatus --help + source: atlas api clusters getClusterStatus --help - label: Go lang: go source: | @@ -40190,7 +40190,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostLogs --help + source: atlas api monitoringAndLogs getHostLogs --help - label: Go lang: go source: | @@ -40276,7 +40276,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderRegions --help + source: atlas api clusters listCloudProviderRegions --help - label: Go lang: go source: | @@ -40360,7 +40360,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedCluster --help + source: atlas api clusters upgradeSharedCluster --help - label: Go lang: go source: | @@ -40448,7 +40448,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedClusterToServerless --help + source: atlas api clusters upgradeSharedClusterToServerless --help - label: Go lang: go source: | @@ -40537,7 +40537,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help + source: atlas api networkPeering listPeeringContainerByCloudProvider --help - label: Go lang: go source: | @@ -40620,7 +40620,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringContainer --help + source: atlas api networkPeering createPeeringContainer --help - label: Go lang: go source: | @@ -40709,7 +40709,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringContainer --help + source: atlas api networkPeering deletePeeringContainer --help - label: Go lang: go source: | @@ -40787,7 +40787,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringContainer --help + source: atlas api networkPeering getPeeringContainer --help - label: Go lang: go source: | @@ -40880,7 +40880,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringContainer --help + source: atlas api networkPeering updatePeeringContainer --help - label: Go lang: go source: | @@ -40956,7 +40956,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainers --help + source: atlas api networkPeering listPeeringContainers --help - label: Go lang: go source: | @@ -41027,7 +41027,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCustomDatabaseRoles --help + source: atlas api customDatabaseRoles listCustomDatabaseRoles --help - label: Go lang: go source: | @@ -41110,7 +41110,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomDatabaseRole --help + source: atlas api customDatabaseRoles createCustomDatabaseRole --help - label: Go lang: go source: | @@ -41193,7 +41193,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCustomDatabaseRole --help + source: atlas api customDatabaseRoles deleteCustomDatabaseRole --help - label: Go lang: go source: | @@ -41269,7 +41269,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCustomDatabaseRole --help + source: atlas api customDatabaseRoles getCustomDatabaseRole --help - label: Go lang: go source: | @@ -41358,7 +41358,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCustomDatabaseRole --help + source: atlas api customDatabaseRoles updateCustomDatabaseRole --help - label: Go lang: go source: | @@ -41442,7 +41442,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFederatedDatabases --help + source: atlas api dataFederation listFederatedDatabases --help - label: Go lang: go source: | @@ -41523,7 +41523,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFederatedDatabase --help + source: atlas api dataFederation createFederatedDatabase --help - label: Go lang: go source: | @@ -41602,7 +41602,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederatedDatabase --help + source: atlas api dataFederation deleteFederatedDatabase --help - label: Go lang: go source: | @@ -41679,7 +41679,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederatedDatabase --help + source: atlas api dataFederation getFederatedDatabase --help - label: Go lang: go source: | @@ -41768,7 +41768,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFederatedDatabase --help + source: atlas api dataFederation updateFederatedDatabase --help - label: Go lang: go source: | @@ -41851,7 +41851,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimits --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimits --help - label: Go lang: go source: | @@ -41944,7 +41944,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOneDataFederationInstanceQueryLimit --help + source: atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help - label: Go lang: go source: | @@ -42037,7 +42037,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimit --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimit --help - label: Go lang: go source: | @@ -42140,7 +42140,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + source: atlas api dataFederation createOneDataFederationQueryLimit --help - label: Go lang: go source: | @@ -42243,7 +42243,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFederatedDatabaseQueryLogs --help + source: atlas api dataFederation downloadFederatedDatabaseQueryLogs --help - label: Go lang: go source: | @@ -42317,7 +42317,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUsers --help + source: atlas api databaseUsers listDatabaseUsers --help - label: Go lang: go source: | @@ -42491,7 +42491,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUser --help + source: atlas api databaseUsers createDatabaseUser --help - label: Go lang: go source: | @@ -42594,7 +42594,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDatabaseUser --help + source: atlas api databaseUsers deleteDatabaseUser --help - label: Go lang: go source: | @@ -42690,7 +42690,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseUser --help + source: atlas api databaseUsers getDatabaseUser --help - label: Go lang: go source: | @@ -42799,7 +42799,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDatabaseUser --help + source: atlas api databaseUsers updateDatabaseUser --help - label: Go lang: go source: | @@ -42883,7 +42883,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUserCertificates --help + source: atlas api x509Authentication listDatabaseUserCertificates --help - label: Go lang: go source: | @@ -42981,7 +42981,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUserCertificate --help + source: atlas api x509Authentication createDatabaseUserCertificate --help - label: Go lang: go source: | @@ -43100,7 +43100,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByClusterName --help + source: atlas api accessTracking listAccessLogsByClusterName --help - label: Go lang: go source: | @@ -43212,7 +43212,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByHostname --help + source: atlas api accessTracking listAccessLogsByHostname --help - label: Go lang: go source: | @@ -43284,7 +43284,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help - label: Go lang: go source: | @@ -43377,7 +43377,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help - label: Go lang: go source: | @@ -43458,7 +43458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help - label: Go lang: go source: | @@ -43541,7 +43541,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -43638,7 +43638,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help - label: Go lang: go source: | @@ -43723,7 +43723,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -43849,7 +43849,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectEvents --help + source: atlas api events listProjectEvents --help - label: Go lang: go source: | @@ -43938,7 +43938,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectEvent --help + source: atlas api events getProjectEvent --help - label: Go lang: go source: | @@ -44009,7 +44009,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listMetricTypes --help + source: atlas api monitoringAndLogs listMetricTypes --help - label: Go lang: go source: | @@ -44110,7 +44110,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIndexMetrics --help + source: atlas api monitoringAndLogs getIndexMetrics --help - label: Go lang: go source: | @@ -44210,7 +44210,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIndexMetrics --help + source: atlas api monitoringAndLogs listIndexMetrics --help - label: Go lang: go source: | @@ -44309,7 +44309,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMeasurements --help + source: atlas api monitoringAndLogs getMeasurements --help - label: Go lang: go source: | @@ -44385,7 +44385,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listThirdPartyIntegrations --help + source: atlas api thirdPartyIntegrations listThirdPartyIntegrations --help - label: Go lang: go source: | @@ -44476,7 +44476,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help - label: Go lang: go source: | @@ -44566,7 +44566,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations getThirdPartyIntegration --help - label: Go lang: go source: | @@ -44668,7 +44668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations createThirdPartyIntegration --help - label: Go lang: go source: | @@ -44772,7 +44772,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations updateThirdPartyIntegration --help - label: Go lang: go source: | @@ -44854,7 +44854,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectInvitations --help + source: atlas api projects listProjectInvitations --help - label: Go lang: go source: | @@ -44935,7 +44935,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitation --help + source: atlas api projects updateProjectInvitation --help - label: Go lang: go source: | @@ -45016,7 +45016,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectInvitation --help + source: atlas api projects createProjectInvitation --help - label: Go lang: go source: | @@ -45099,7 +45099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectInvitation --help + source: atlas api projects deleteProjectInvitation --help - label: Go lang: go source: | @@ -45180,7 +45180,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectInvitation --help + source: atlas api projects getProjectInvitation --help - label: Go lang: go source: | @@ -45269,7 +45269,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitationById --help + source: atlas api projects updateProjectInvitationById --help - label: Go lang: go source: | @@ -45345,7 +45345,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllIPAddresses --help + source: atlas api projects returnAllIpaddresses --help - label: Go lang: go source: | @@ -45422,7 +45422,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectLimits --help + source: atlas api projects listProjectLimits --help - label: Go lang: go source: | @@ -45531,7 +45531,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectLimit --help + source: atlas api projects deleteProjectLimit --help - label: Go lang: go source: | @@ -45641,7 +45641,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLimit --help + source: atlas api projects getProjectLimit --help - label: Go lang: go source: | @@ -45761,7 +45761,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setProjectLimit --help + source: atlas api projects setProjectLimit --help - label: Go lang: go source: | @@ -45857,7 +45857,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushMigration --help + source: atlas api cloudMigrationService createPushMigration --help - label: Go lang: go source: | @@ -45936,7 +45936,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushMigration --help + source: atlas api cloudMigrationService getPushMigration --help - label: Go lang: go source: | @@ -46010,7 +46010,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cutoverMigration --help + source: atlas api cloudMigrationService cutoverMigration --help - label: Go lang: go source: | @@ -46099,7 +46099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateMigration --help + source: atlas api cloudMigrationService validateMigration --help - label: Go lang: go source: | @@ -46188,7 +46188,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getValidationStatus --help + source: atlas api cloudMigrationService getValidationStatus --help - label: Go lang: go source: | @@ -46256,7 +46256,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resetMaintenanceWindow --help + source: atlas api maintenanceWindows resetMaintenanceWindow --help - label: Go lang: go source: | @@ -46324,7 +46324,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMaintenanceWindow --help + source: atlas api maintenanceWindows getMaintenanceWindow --help - label: Go lang: go source: | @@ -46400,7 +46400,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateMaintenanceWindow --help + source: atlas api maintenanceWindows updateMaintenanceWindow --help - label: Go lang: go source: | @@ -46472,7 +46472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help + source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help - label: Go lang: go source: | @@ -46544,7 +46544,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deferMaintenanceWindow --help + source: atlas api maintenanceWindows deferMaintenanceWindow --help - label: Go lang: go source: | @@ -46617,7 +46617,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedSlowMs --help + source: atlas api performanceAdvisor getManagedSlowMs --help - label: Go lang: go source: | @@ -46686,7 +46686,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableSlowOperationThresholding --help + source: atlas api performanceAdvisor disableSlowOperationThresholding --help - label: Go lang: go source: | @@ -46755,7 +46755,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api enableSlowOperationThresholding --help + source: atlas api performanceAdvisor enableSlowOperationThresholding --help - label: Go lang: go source: | @@ -46869,7 +46869,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLTSVersions --help + source: atlas api projects getProjectLtsversions --help - label: Go lang: go source: | @@ -46953,7 +46953,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringConnections --help + source: atlas api networkPeering listPeeringConnections --help - label: Go lang: go source: | @@ -47037,7 +47037,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringConnection --help + source: atlas api networkPeering createPeeringConnection --help - label: Go lang: go source: | @@ -47121,7 +47121,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringConnection --help + source: atlas api networkPeering deletePeeringConnection --help - label: Go lang: go source: | @@ -47200,7 +47200,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringConnection --help + source: atlas api networkPeering getPeeringConnection --help - label: Go lang: go source: | @@ -47290,7 +47290,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringConnection --help + source: atlas api networkPeering updatePeeringConnection --help - label: Go lang: go source: | @@ -47366,7 +47366,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelines --help + source: atlas api dataLakePipelines listPipelines --help - label: Go lang: go source: | @@ -47444,7 +47444,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPipeline --help + source: atlas api dataLakePipelines createPipeline --help - label: Go lang: go source: | @@ -47527,7 +47527,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipeline --help + source: atlas api dataLakePipelines deletePipeline --help - label: Go lang: go source: | @@ -47606,7 +47606,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipeline --help + source: atlas api dataLakePipelines getPipeline --help - label: Go lang: go source: | @@ -47695,7 +47695,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePipeline --help + source: atlas api dataLakePipelines updatePipeline --help - label: Go lang: go source: | @@ -47781,7 +47781,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSchedules --help + source: atlas api dataLakePipelines listPipelineSchedules --help - label: Go lang: go source: | @@ -47871,7 +47871,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSnapshots --help + source: atlas api dataLakePipelines listPipelineSnapshots --help - label: Go lang: go source: | @@ -47951,7 +47951,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pausePipeline --help + source: atlas api dataLakePipelines pausePipeline --help - label: Go lang: go source: | @@ -48035,7 +48035,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resumePipeline --help + source: atlas api dataLakePipelines resumePipeline --help - label: Go lang: go source: | @@ -48129,7 +48129,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineRuns --help + source: atlas api dataLakePipelines listPipelineRuns --help - label: Go lang: go source: | @@ -48219,7 +48219,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipelineRunDataset --help + source: atlas api dataLakePipelines deletePipelineRunDataset --help - label: Go lang: go source: | @@ -48308,7 +48308,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipelineRun --help + source: atlas api dataLakePipelines getPipelineRun --help - label: Go lang: go source: | @@ -48395,7 +48395,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api triggerSnapshotIngestion --help + source: atlas api dataLakePipelines triggerSnapshotIngestion --help - label: Go lang: go source: | @@ -48481,7 +48481,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateEndpointServices --help + source: atlas api privateEndpointServices listPrivateEndpointServices --help - label: Go lang: go source: | @@ -48570,7 +48570,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpointService --help + source: atlas api privateEndpointServices deletePrivateEndpointService --help - label: Go lang: go source: | @@ -48660,7 +48660,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpointService --help + source: atlas api privateEndpointServices getPrivateEndpointService --help - label: Go lang: go source: | @@ -48762,7 +48762,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpoint --help + source: atlas api privateEndpointServices createPrivateEndpoint --help - label: Go lang: go source: | @@ -48862,7 +48862,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpoint --help + source: atlas api privateEndpointServices deletePrivateEndpoint --help - label: Go lang: go source: | @@ -48959,7 +48959,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpoint --help + source: atlas api privateEndpointServices getPrivateEndpoint --help - label: Go lang: go source: | @@ -49038,7 +49038,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpointService --help + source: atlas api privateEndpointServices createPrivateEndpointService --help - label: Go lang: go source: | @@ -49113,7 +49113,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -49190,7 +49190,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -49274,7 +49274,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessPrivateEndpoints --help + source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help - label: Go lang: go source: | @@ -49364,7 +49364,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49455,7 +49455,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49541,7 +49541,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49634,7 +49634,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -49711,7 +49711,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + source: atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help - label: Go lang: go source: | @@ -49792,7 +49792,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disablePeering --help + source: atlas api networkPeering disablePeering --help - label: Go lang: go source: | @@ -49872,7 +49872,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDataFederationPrivateEndpoints --help + source: atlas api dataFederation listDataFederationPrivateEndpoints --help - label: Go lang: go source: | @@ -49968,7 +49968,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help + source: atlas api dataFederation createDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -50052,7 +50052,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help + source: atlas api dataFederation deleteDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -50133,7 +50133,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataFederationPrivateEndpoint --help + source: atlas api dataFederation getDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -50205,7 +50205,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasProcesses --help + source: atlas api monitoringAndLogs listAtlasProcesses --help - label: Go lang: go source: | @@ -50282,7 +50282,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasProcess --help + source: atlas api monitoringAndLogs getAtlasProcess --help - label: Go lang: go source: | @@ -50362,7 +50362,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabases --help + source: atlas api monitoringAndLogs listDatabases --help - label: Go lang: go source: | @@ -50445,7 +50445,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabase --help + source: atlas api monitoringAndLogs getDatabase --help - label: Go lang: go source: | @@ -50554,7 +50554,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseMeasurements --help + source: atlas api monitoringAndLogs getDatabaseMeasurements --help - label: Go lang: go source: | @@ -50634,7 +50634,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskPartitions --help + source: atlas api monitoringAndLogs listDiskPartitions --help - label: Go lang: go source: | @@ -50716,7 +50716,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskMeasurements --help + source: atlas api monitoringAndLogs listDiskMeasurements --help - label: Go lang: go source: | @@ -50841,7 +50841,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDiskMeasurements --help + source: atlas api monitoringAndLogs getDiskMeasurements --help - label: Go lang: go source: | @@ -51077,7 +51077,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostMeasurements --help + source: atlas api monitoringAndLogs getHostMeasurements --help - label: Go lang: go source: | @@ -51174,7 +51174,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueryNamespaces --help + source: atlas api performanceAdvisor listSlowQueryNamespaces --help - label: Go lang: go source: | @@ -51288,7 +51288,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueries --help + source: atlas api performanceAdvisor listSlowQueries --help - label: Go lang: go source: | @@ -51409,7 +51409,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSuggestedIndexes --help + source: atlas api performanceAdvisor listSuggestedIndexes --help - label: Go lang: go source: | @@ -51482,7 +51482,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport deletePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51554,7 +51554,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport getPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51634,7 +51634,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport updatePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51718,7 +51718,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport createPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -51803,7 +51803,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api loadSampleDataset --help + source: atlas api clusters loadSampleDataset --help - label: Go lang: go source: | @@ -51884,7 +51884,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSampleDatasetLoadStatus --help + source: atlas api clusters getSampleDatasetLoadStatus --help - label: Go lang: go source: | @@ -51956,7 +51956,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessInstances --help + source: atlas api serverlessInstances listServerlessInstances --help - label: Go lang: go source: | @@ -52035,7 +52035,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessInstance --help + source: atlas api serverlessInstances createServerlessInstance --help - label: Go lang: go source: | @@ -52122,7 +52122,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackupRestoreJobs --help + source: atlas api cloudBackups listServerlessBackupRestoreJobs --help - label: Go lang: go source: | @@ -52212,7 +52212,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + source: atlas api cloudBackups createServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -52305,7 +52305,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackupRestoreJob --help + source: atlas api cloudBackups getServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -52388,7 +52388,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackups --help + source: atlas api cloudBackups listServerlessBackups --help - label: Go lang: go source: | @@ -52477,7 +52477,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackup --help + source: atlas api cloudBackups getServerlessBackup --help - label: Go lang: go source: | @@ -52555,7 +52555,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessAutoIndexing --help + source: atlas api performanceAdvisor getServerlessAutoIndexing --help - label: Go lang: go source: | @@ -52637,7 +52637,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setServerlessAutoIndexing --help + source: atlas api performanceAdvisor setServerlessAutoIndexing --help - label: Go lang: go source: | @@ -52723,7 +52723,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessInstance --help + source: atlas api serverlessInstances deleteServerlessInstance --help - label: Go lang: go source: | @@ -52804,7 +52804,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessInstance --help + source: atlas api serverlessInstances getServerlessInstance --help - label: Go lang: go source: | @@ -52890,7 +52890,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessInstance --help + source: atlas api serverlessInstances updateServerlessInstance --help - label: Go lang: go source: | @@ -52967,7 +52967,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccounts --help + source: atlas api groups listProjectServiceAccounts --help - label: Go lang: go source: | @@ -53045,7 +53045,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccount --help + source: atlas api groups createProjectServiceAccount --help - label: Go lang: go source: | @@ -53127,7 +53127,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccount --help + source: atlas api groups deleteProjectServiceAccount --help - label: Go lang: go source: | @@ -53203,7 +53203,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectServiceAccount --help + source: atlas api groups getProjectServiceAccount --help - label: Go lang: go source: | @@ -53288,7 +53288,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectServiceAccount --help + source: atlas api groups updateProjectServiceAccount --help - label: Go lang: go source: | @@ -53379,7 +53379,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectServiceAccount --help + source: atlas api groups addProjectServiceAccount --help - label: Go lang: go source: | @@ -53456,7 +53456,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectSettings --help + source: atlas api projects getProjectSettings --help - label: Go lang: go source: | @@ -53535,7 +53535,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectSettings --help + source: atlas api projects updateProjectSettings --help - label: Go lang: go source: | @@ -53610,7 +53610,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamInstances --help + source: atlas api streams listStreamInstances --help - label: Go lang: go source: | @@ -53687,7 +53687,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstance --help + source: atlas api streams createStreamInstance --help - label: Go lang: go source: | @@ -53770,7 +53770,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamInstance --help + source: atlas api streams deleteStreamInstance --help - label: Go lang: go source: | @@ -53852,7 +53852,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamInstance --help + source: atlas api streams getStreamInstance --help - label: Go lang: go source: | @@ -53939,7 +53939,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamInstance --help + source: atlas api streams updateStreamInstance --help - label: Go lang: go source: | @@ -54043,7 +54043,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadStreamTenantAuditLogs --help + source: atlas api streams downloadStreamTenantAuditLogs --help - label: Go lang: go source: | @@ -54124,7 +54124,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamConnections --help + source: atlas api streams listStreamConnections --help - label: Go lang: go source: | @@ -54209,7 +54209,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamConnection --help + source: atlas api streams createStreamConnection --help - label: Go lang: go source: | @@ -54298,7 +54298,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamConnection --help + source: atlas api streams deleteStreamConnection --help - label: Go lang: go source: | @@ -54379,7 +54379,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamConnection --help + source: atlas api streams getStreamConnection --help - label: Go lang: go source: | @@ -54472,7 +54472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamConnection --help + source: atlas api streams updateStreamConnection --help - label: Go lang: go source: | @@ -54554,7 +54554,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectTeams --help + source: atlas api teams listProjectTeams --help - label: Go lang: go source: | @@ -54640,7 +54640,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addAllTeamsToProject --help + source: atlas api teams addAllTeamsToProject --help - label: Go lang: go source: | @@ -54728,7 +54728,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectTeam --help + source: atlas api teams removeProjectTeam --help - label: Go lang: go source: | @@ -54821,7 +54821,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateTeamRoles --help + source: atlas api teams updateTeamRoles --help - label: Go lang: go source: | @@ -54894,7 +54894,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfiguration --help + source: atlas api ldapConfiguration getLdapconfiguration --help - label: Go lang: go source: | @@ -54974,7 +54974,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api saveLDAPConfiguration --help + source: atlas api ldapConfiguration saveLdapconfiguration --help - label: Go lang: go source: | @@ -55049,7 +55049,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableCustomerManagedX509 --help + source: atlas api x509Authentication disableCustomerManagedX509 --help - label: Go lang: go source: | @@ -55118,7 +55118,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLDAPConfiguration --help + source: atlas api ldapConfiguration deleteLdapconfiguration --help - label: Go lang: go source: | @@ -55196,7 +55196,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyLDAPConfiguration --help + source: atlas api ldapConfiguration verifyLdapconfiguration --help - label: Go lang: go source: | @@ -55278,7 +55278,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfigurationStatus --help + source: atlas api ldapConfiguration getLdapconfigurationStatus --help - label: Go lang: go source: | @@ -55362,7 +55362,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api projects listProjectUsers --help - label: Go lang: go source: | @@ -55442,7 +55442,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api projects removeProjectUser --help - label: Go lang: go source: | @@ -55531,7 +55531,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectRoles --help + source: atlas api projects updateProjectRoles --help - label: Go lang: go source: | @@ -55617,7 +55617,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectByName --help + source: atlas api projects getProjectByName --help - label: Go lang: go source: | @@ -55699,7 +55699,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizations --help + source: atlas api organizations listOrganizations --help - label: Go lang: go source: | @@ -55781,7 +55781,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganization --help + source: atlas api organizations createOrganization --help - label: Go lang: go source: | @@ -55866,7 +55866,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganization --help + source: atlas api organizations deleteOrganization --help - label: Go lang: go source: | @@ -55940,7 +55940,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganization --help + source: atlas api organizations getOrganization --help - label: Go lang: go source: | @@ -56021,7 +56021,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameOrganization --help + source: atlas api organizations renameOrganization --help - label: Go lang: go source: | @@ -56100,7 +56100,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeys --help + source: atlas api programmaticApiKeys listApiKeys --help - label: Go lang: go source: | @@ -56178,7 +56178,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKey --help + source: atlas api programmaticApiKeys createApiKey --help - label: Go lang: go source: | @@ -56263,7 +56263,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKey --help + source: atlas api programmaticApiKeys deleteApiKey --help - label: Go lang: go source: | @@ -56343,7 +56343,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKey --help + source: atlas api programmaticApiKeys getApiKey --help - label: Go lang: go source: | @@ -56432,7 +56432,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKey --help + source: atlas api programmaticApiKeys updateApiKey --help - label: Go lang: go source: | @@ -56520,7 +56520,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeyAccessListsEntries --help + source: atlas api programmaticApiKeys listApiKeyAccessListsEntries --help - label: Go lang: go source: | @@ -56613,7 +56613,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKeyAccessList --help + source: atlas api programmaticApiKeys createApiKeyAccessList --help - label: Go lang: go source: | @@ -56710,7 +56710,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKeyAccessListEntry --help + source: atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help - label: Go lang: go source: | @@ -56800,7 +56800,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKeyAccessList --help + source: atlas api programmaticApiKeys getApiKeyAccessList --help - label: Go lang: go source: | @@ -56877,7 +56877,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess --help + source: atlas api invoices createCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -56968,7 +56968,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess_1 --help + source: atlas api invoices createCostExplorerQueryProcess1 --help - label: Go lang: go source: | @@ -57072,7 +57072,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationEvents --help + source: atlas api events listOrganizationEvents --help - label: Go lang: go source: | @@ -57161,7 +57161,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationEvent --help + source: atlas api events getOrganizationEvent --help - label: Go lang: go source: | @@ -57234,7 +57234,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederationSettings --help + source: atlas api federatedAuthentication getFederationSettings --help - label: Go lang: go source: | @@ -57323,7 +57323,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationProjects --help + source: atlas api organizations listOrganizationProjects --help - label: Go lang: go source: | @@ -57404,7 +57404,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationInvitations --help + source: atlas api organizations listOrganizationInvitations --help - label: Go lang: go source: | @@ -57483,7 +57483,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitation --help + source: atlas api organizations updateOrganizationInvitation --help - label: Go lang: go source: | @@ -57566,7 +57566,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationInvitation --help + source: atlas api organizations createOrganizationInvitation --help - label: Go lang: go source: | @@ -57649,7 +57649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganizationInvitation --help + source: atlas api organizations deleteOrganizationInvitation --help - label: Go lang: go source: | @@ -57729,7 +57729,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationInvitation --help + source: atlas api organizations getOrganizationInvitation --help - label: Go lang: go source: | @@ -57817,7 +57817,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitationById --help + source: atlas api organizations updateOrganizationInvitationById --help - label: Go lang: go source: | @@ -57954,7 +57954,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listInvoices --help + source: atlas api invoices listInvoices --help - label: Go lang: go source: | @@ -58040,7 +58040,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getInvoice --help + source: atlas api invoices getInvoice --help - label: Go lang: go source: | @@ -58127,7 +58127,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadInvoiceCSV --help + source: atlas api invoices downloadInvoiceCsv --help - label: Go lang: go source: | @@ -58198,7 +58198,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPendingInvoices --help + source: atlas api invoices listPendingInvoices --help - label: Go lang: go source: | @@ -58271,7 +58271,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSourceProjects --help + source: atlas api cloudMigrationService listSourceProjects --help - label: Go lang: go source: | @@ -58341,7 +58341,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLinkToken --help + source: atlas api cloudMigrationService deleteLinkToken --help - label: Go lang: go source: | @@ -58418,7 +58418,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLinkToken --help + source: atlas api cloudMigrationService createLinkToken --help - label: Go lang: go source: | @@ -58495,7 +58495,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccounts --help + source: atlas api organizations listServiceAccounts --help - label: Go lang: go source: | @@ -58572,7 +58572,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccount --help + source: atlas api organizations createServiceAccount --help - label: Go lang: go source: | @@ -58651,7 +58651,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccount --help + source: atlas api organizations deleteServiceAccount --help - label: Go lang: go source: | @@ -58727,7 +58727,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServiceAccount --help + source: atlas api organizations getServiceAccount --help - label: Go lang: go source: | @@ -58812,7 +58812,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServiceAccount --help + source: atlas api organizations updateServiceAccount --help - label: Go lang: go source: | @@ -58895,7 +58895,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountProjects --help + source: atlas api organizations listServiceAccountProjects --help - label: Go lang: go source: | @@ -58979,7 +58979,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountSecret --help + source: atlas api organizations createServiceAccountSecret --help - label: Go lang: go source: | @@ -59064,7 +59064,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountSecret --help + source: atlas api organizations deleteServiceAccountSecret --help - label: Go lang: go source: | @@ -59137,7 +59137,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationSettings --help + source: atlas api organizations getOrganizationSettings --help - label: Go lang: go source: | @@ -59216,7 +59216,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationSettings --help + source: atlas api organizations updateOrganizationSettings --help - label: Go lang: go source: | @@ -59299,7 +59299,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationTeams --help + source: atlas api teams listOrganizationTeams --help - label: Go lang: go source: | @@ -59383,7 +59383,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createTeam --help + source: atlas api teams createTeam --help - label: Go lang: go source: | @@ -59472,7 +59472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteTeam --help + source: atlas api teams deleteTeam --help - label: Go lang: go source: | @@ -59556,7 +59556,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamById --help + source: atlas api teams getTeamById --help - label: Go lang: go source: | @@ -59649,7 +59649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameTeam --help + source: atlas api teams renameTeam --help - label: Go lang: go source: | @@ -59742,7 +59742,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api teams listTeamUsers --help - label: Go lang: go source: | @@ -59837,7 +59837,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addTeamUser --help + source: atlas api teams addTeamUser --help - label: Go lang: go source: | @@ -59933,7 +59933,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeTeamUser --help + source: atlas api teams removeTeamUser --help - label: Go lang: go source: | @@ -60015,7 +60015,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamByName --help + source: atlas api teams getTeamByName --help - label: Go lang: go source: | @@ -60091,7 +60091,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api organizations listOrganizationUsers --help - label: Go lang: go source: | @@ -60174,7 +60174,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api organizations removeOrganizationUser --help - label: Go lang: go source: | @@ -60263,7 +60263,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationRoles --help + source: atlas api organizations updateOrganizationRoles --help - label: Go lang: go source: | @@ -60349,7 +60349,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUser --help + source: atlas api mongoDbCloudUsers createUser --help - label: Go lang: go source: | @@ -60432,7 +60432,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUser --help + source: atlas api mongoDbCloudUsers getUser --help - label: Go lang: go source: | @@ -60509,7 +60509,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUserByUsername --help + source: atlas api mongoDbCloudUsers getUserByUsername --help - label: Go lang: go source: | 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 d26a3b0f5e..97f6035af1 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 @@ -36105,7 +36105,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "source": "atlas api root getSystemStatus --help" }, { "lang": "go", @@ -36172,7 +36172,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "source": "atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help" }, { "lang": "go", @@ -36245,7 +36245,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "source": "atlas api clusters listClustersForAllProjects --help" }, { "lang": "go", @@ -36318,7 +36318,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "source": "atlas api events listEventTypes --help" }, { "lang": "go", @@ -36382,7 +36382,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "source": "atlas api federatedAuthentication deleteFederationApp --help" }, { "lang": "go", @@ -36458,7 +36458,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "source": "atlas api federatedAuthentication listConnectedOrgConfigs --help" }, { "lang": "go", @@ -36541,7 +36541,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication removeConnectedOrgConfig --help" }, { "lang": "go", @@ -36622,7 +36622,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication getConnectedOrgConfig --help" }, { "lang": "go", @@ -36714,7 +36714,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication updateConnectedOrgConfig --help" }, { "lang": "go", @@ -36787,7 +36787,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "source": "atlas api federatedAuthentication listRoleMappings --help" }, { "lang": "go", @@ -36869,7 +36869,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "source": "atlas api federatedAuthentication createRoleMapping --help" }, { "lang": "go", @@ -36952,7 +36952,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "source": "atlas api federatedAuthentication deleteRoleMapping --help" }, { "lang": "go", @@ -37036,7 +37036,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "source": "atlas api federatedAuthentication getRoleMapping --help" }, { "lang": "go", @@ -37131,7 +37131,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "source": "atlas api federatedAuthentication updateRoleMapping --help" }, { "lang": "go", @@ -37239,7 +37239,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "source": "atlas api federatedAuthentication listIdentityProviders --help" }, { "lang": "go", @@ -37321,7 +37321,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "source": "atlas api federatedAuthentication createIdentityProvider --help" }, { "lang": "go", @@ -37398,7 +37398,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "source": "atlas api federatedAuthentication deleteIdentityProvider --help" }, { "lang": "go", @@ -37479,7 +37479,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "source": "atlas api federatedAuthentication getIdentityProvider --help" }, { "lang": "go", @@ -37568,7 +37568,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "source": "atlas api federatedAuthentication updateIdentityProvider --help" }, { "lang": "go", @@ -37645,7 +37645,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "source": "atlas api federatedAuthentication revokeJwksFromIdentityProvider --help" }, { "lang": "go", @@ -37715,7 +37715,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "source": "atlas api federatedAuthentication getIdentityProviderMetadata --help" }, { "lang": "go", @@ -37791,7 +37791,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "source": "atlas api projects listProjects --help" }, { "lang": "go", @@ -37887,7 +37887,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProject --help" + "source": "atlas api projects createProject --help" }, { "lang": "go", @@ -37971,7 +37971,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "source": "atlas api projects getProjectByName --help" }, { "lang": "go", @@ -38041,7 +38041,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "source": "atlas api projects deleteProject --help" }, { "lang": "go", @@ -38109,7 +38109,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProject --help" + "source": "atlas api projects getProject --help" }, { "lang": "go", @@ -38194,7 +38194,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "source": "atlas api projects updateProject --help" }, { "lang": "go", @@ -38280,7 +38280,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "source": "atlas api projects addUserToProject --help" }, { "lang": "go", @@ -38360,7 +38360,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "source": "atlas api projectIpAccessList listProjectIpAccessLists --help" }, { "lang": "go", @@ -38458,7 +38458,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "source": "atlas api projectIpAccessList createProjectIpAccessList --help" }, { "lang": "go", @@ -38543,7 +38543,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "source": "atlas api projectIpAccessList deleteProjectIpAccessList --help" }, { "lang": "go", @@ -38629,7 +38629,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "source": "atlas api projectIpAccessList getProjectIpList --help" }, { "lang": "go", @@ -38716,7 +38716,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "source": "atlas api projectIpAccessList getProjectIpAccessListStatus --help" }, { "lang": "go", @@ -38792,7 +38792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "source": "atlas api alertConfigurations listAlertConfigurations --help" }, { "lang": "go", @@ -38871,7 +38871,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "source": "atlas api alertConfigurations createAlertConfiguration --help" }, { "lang": "go", @@ -38951,7 +38951,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "source": "atlas api alertConfigurations deleteAlertConfiguration --help" }, { "lang": "go", @@ -39032,7 +39032,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "source": "atlas api alertConfigurations getAlertConfiguration --help" }, { "lang": "go", @@ -39124,7 +39124,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "source": "atlas api alertConfigurations toggleAlertConfiguration --help" }, { "lang": "go", @@ -39219,7 +39219,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "source": "atlas api alertConfigurations updateAlertConfiguration --help" }, { "lang": "go", @@ -39311,7 +39311,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "source": "atlas api alerts listAlertsByAlertConfigurationId --help" }, { "lang": "go", @@ -39403,7 +39403,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "source": "atlas api alerts listAlerts --help" }, { "lang": "go", @@ -39485,7 +39485,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "source": "atlas api alerts getAlert --help" }, { "lang": "go", @@ -39580,7 +39580,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "source": "atlas api alerts acknowledgeAlert --help" }, { "lang": "go", @@ -39672,7 +39672,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "source": "atlas api alertConfigurations listAlertConfigurationsByAlertId --help" }, { "lang": "go", @@ -39752,7 +39752,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "source": "atlas api programmaticApiKeys listProjectApiKeys --help" }, { "lang": "go", @@ -39828,7 +39828,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "source": "atlas api programmaticApiKeys createProjectApiKey --help" }, { "lang": "go", @@ -39914,7 +39914,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "source": "atlas api programmaticApiKeys removeProjectApiKey --help" }, { "lang": "go", @@ -40014,7 +40014,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "source": "atlas api programmaticApiKeys updateApiKeyRoles --help" }, { "lang": "go", @@ -40105,7 +40105,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "source": "atlas api programmaticApiKeys addProjectApiKey --help" }, { "lang": "go", @@ -40172,7 +40172,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "source": "atlas api auditing getAuditingConfiguration --help" }, { "lang": "go", @@ -40251,7 +40251,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "source": "atlas api auditing updateAuditingConfiguration --help" }, { "lang": "go", @@ -40318,7 +40318,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "source": "atlas api awsClustersDns getAwscustomDns --help" }, { "lang": "go", @@ -40394,7 +40394,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "source": "atlas api awsClustersDns toggleAwscustomDns --help" }, { "lang": "go", @@ -40471,7 +40471,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "source": "atlas api cloudBackups listExportBuckets --help" }, { "lang": "go", @@ -40557,7 +40557,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "source": "atlas api cloudBackups createExportBucket --help" }, { "lang": "go", @@ -40641,7 +40641,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "source": "atlas api cloudBackups deleteExportBucket --help" }, { "lang": "go", @@ -40720,7 +40720,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "source": "atlas api cloudBackups getExportBucket --help" }, { "lang": "go", @@ -40791,7 +40791,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "source": "atlas api cloudBackups getDataProtectionSettings --help" }, { "lang": "go", @@ -40883,7 +40883,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "source": "atlas api cloudBackups updateDataProtectionSettings --help" }, { "lang": "go", @@ -40950,7 +40950,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "source": "atlas api cloudProviderAccess listCloudProviderAccessRoles --help" }, { "lang": "go", @@ -41030,7 +41030,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess createCloudProviderAccessRole --help" }, { "lang": "go", @@ -41121,7 +41121,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -41200,7 +41200,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess getCloudProviderAccessRole --help" }, { "lang": "go", @@ -41298,7 +41298,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -41384,7 +41384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "source": "atlas api clusters listClusters --help" }, { "lang": "go", @@ -41474,7 +41474,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "source": "atlas api clusters createCluster --help" }, { "lang": "go", @@ -41570,7 +41570,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "source": "atlas api clusters listCloudProviderRegions --help" }, { "lang": "go", @@ -41660,7 +41660,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "source": "atlas api clusters upgradeSharedCluster --help" }, { "lang": "go", @@ -41750,7 +41750,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "source": "atlas api clusters upgradeSharedClusterToServerless --help" }, { "lang": "go", @@ -41843,7 +41843,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "source": "atlas api clusters deleteCluster --help" }, { "lang": "go", @@ -41927,7 +41927,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "source": "atlas api clusters getCluster --help" }, { "lang": "go", @@ -42026,7 +42026,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "source": "atlas api clusters updateCluster --help" }, { "lang": "go", @@ -42115,7 +42115,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "source": "atlas api cloudBackups listBackupExportJobs --help" }, { "lang": "go", @@ -42209,7 +42209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "source": "atlas api cloudBackups createBackupExportJob --help" }, { "lang": "go", @@ -42294,7 +42294,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "source": "atlas api cloudBackups getBackupExportJob --help" }, { "lang": "go", @@ -42382,7 +42382,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "source": "atlas api cloudBackups listBackupRestoreJobs --help" }, { "lang": "go", @@ -42479,7 +42479,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "source": "atlas api cloudBackups createBackupRestoreJob --help" }, { "lang": "go", @@ -42573,7 +42573,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "source": "atlas api cloudBackups cancelBackupRestoreJob --help" }, { "lang": "go", @@ -42662,7 +42662,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "source": "atlas api cloudBackups getBackupRestoreJob --help" }, { "lang": "go", @@ -42742,7 +42742,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "source": "atlas api cloudBackups deleteAllBackupSchedules --help" }, { "lang": "go", @@ -42821,7 +42821,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "source": "atlas api cloudBackups getBackupSchedule --help" }, { "lang": "go", @@ -42914,7 +42914,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "source": "atlas api cloudBackups updateBackupSchedule --help" }, { "lang": "go", @@ -43006,7 +43006,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "source": "atlas api cloudBackups listReplicaSetBackups --help" }, { "lang": "go", @@ -43097,7 +43097,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "source": "atlas api cloudBackups takeSnapshot --help" }, { "lang": "go", @@ -43188,7 +43188,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "source": "atlas api cloudBackups deleteShardedClusterBackup --help" }, { "lang": "go", @@ -43280,7 +43280,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "source": "atlas api cloudBackups getShardedClusterBackup --help" }, { "lang": "go", @@ -43362,7 +43362,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "source": "atlas api cloudBackups listShardedClusterBackups --help" }, { "lang": "go", @@ -43456,7 +43456,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "source": "atlas api cloudBackups deleteReplicaSetBackup --help" }, { "lang": "go", @@ -43548,7 +43548,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "source": "atlas api cloudBackups getReplicaSetBackup --help" }, { "lang": "go", @@ -43651,7 +43651,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "source": "atlas api cloudBackups updateSnapshotRetention --help" }, { "lang": "go", @@ -43753,7 +43753,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots downloadSharedClusterBackup --help" }, { "lang": "go", @@ -43852,7 +43852,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -43934,7 +43934,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "source": "atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help" }, { "lang": "go", @@ -44028,7 +44028,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -44110,7 +44110,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "source": "atlas api sharedTierSnapshots listSharedClusterBackups --help" }, { "lang": "go", @@ -44204,7 +44204,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots getSharedClusterBackup --help" }, { "lang": "go", @@ -44293,7 +44293,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "source": "atlas api legacyBackup listLegacyBackupCheckpoints --help" }, { "lang": "go", @@ -44391,7 +44391,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "source": "atlas api legacyBackup getLegacyBackupCheckpoint --help" }, { "lang": "go", @@ -44473,7 +44473,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "source": "atlas api collectionLevelMetrics getPinnedNamespaces --help" }, { "lang": "go", @@ -44575,7 +44575,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPatch --help" }, { "lang": "go", @@ -44677,7 +44677,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPut --help" }, { "lang": "go", @@ -44770,7 +44770,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "source": "atlas api collectionLevelMetrics unpinNamespaces --help" }, { "lang": "go", @@ -44871,7 +44871,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch createAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -44977,7 +44977,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesDeprecated --help" }, { "lang": "go", @@ -45077,7 +45077,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45172,7 +45172,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch getAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45284,7 +45284,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45369,7 +45369,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "source": "atlas api globalClusters getManagedNamespace --help" }, { "lang": "go", @@ -45454,7 +45454,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "source": "atlas api globalClusters deleteAllCustomZoneMappings --help" }, { "lang": "go", @@ -45551,7 +45551,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "source": "atlas api globalClusters createCustomZoneMapping --help" }, { "lang": "go", @@ -45655,7 +45655,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "source": "atlas api globalClusters deleteManagedNamespace --help" }, { "lang": "go", @@ -45755,7 +45755,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "source": "atlas api globalClusters createManagedNamespace --help" }, { "lang": "go", @@ -45941,7 +45941,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "source": "atlas api rollingIndex createRollingIndex --help" }, { "lang": "go", @@ -46033,7 +46033,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "source": "atlas api onlineArchive listOnlineArchives --help" }, { "lang": "go", @@ -46134,7 +46134,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "source": "atlas api onlineArchive createOnlineArchive --help" }, { "lang": "go", @@ -46253,7 +46253,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "source": "atlas api onlineArchive downloadOnlineArchiveQueryLogs --help" }, { "lang": "go", @@ -46351,7 +46351,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "source": "atlas api onlineArchive deleteOnlineArchive --help" }, { "lang": "go", @@ -46450,7 +46450,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "source": "atlas api onlineArchive getOnlineArchive --help" }, { "lang": "go", @@ -46563,7 +46563,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "source": "atlas api onlineArchive updateOnlineArchive --help" }, { "lang": "go", @@ -46652,7 +46652,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "source": "atlas api clusterOutageSimulation endOutageSimulation --help" }, { "lang": "go", @@ -46739,7 +46739,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "source": "atlas api clusterOutageSimulation getOutageSimulation --help" }, { "lang": "go", @@ -46834,7 +46834,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "source": "atlas api clusterOutageSimulation startOutageSimulation --help" }, { "lang": "go", @@ -46921,7 +46921,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "source": "atlas api clusters getClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -47022,7 +47022,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "source": "atlas api clusters updateClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -47099,7 +47099,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "source": "atlas api clusters testFailover --help" }, { "lang": "go", @@ -47202,7 +47202,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "source": "atlas api legacyBackup listLegacyBackupRestoreJobs --help" }, { "lang": "go", @@ -47294,7 +47294,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup createLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -47389,7 +47389,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup getLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -47472,7 +47472,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "source": "atlas api atlasSearch deleteAtlasSearchDeployment --help" }, { "lang": "go", @@ -47554,7 +47554,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "source": "atlas api atlasSearch getAtlasSearchDeployment --help" }, { "lang": "go", @@ -47650,7 +47650,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "source": "atlas api atlasSearch updateAtlasSearchDeployment --help" }, { "lang": "go", @@ -47746,7 +47746,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "source": "atlas api atlasSearch createAtlasSearchDeployment --help" }, { "lang": "go", @@ -47827,7 +47827,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup getLegacySnapshotSchedule --help" }, { "lang": "go", @@ -47916,7 +47916,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup updateLegacySnapshotSchedule --help" }, { "lang": "go", @@ -48019,7 +48019,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "source": "atlas api legacyBackup listLegacySnapshots --help" }, { "lang": "go", @@ -48114,7 +48114,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "source": "atlas api legacyBackup deleteLegacySnapshot --help" }, { "lang": "go", @@ -48204,7 +48204,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "source": "atlas api legacyBackup getLegacySnapshot --help" }, { "lang": "go", @@ -48305,7 +48305,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "source": "atlas api legacyBackup updateLegacySnapshotRetention --help" }, { "lang": "go", @@ -48384,7 +48384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "source": "atlas api clusters getClusterStatus --help" }, { "lang": "go", @@ -48483,7 +48483,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "go", @@ -48635,7 +48635,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "go", @@ -48762,7 +48762,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "source": "atlas api monitoringAndLogs getHostLogs --help" }, { "lang": "go", @@ -48832,7 +48832,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "go", @@ -48926,7 +48926,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "source": "atlas api networkPeering listPeeringContainerByCloudProvider --help" }, { "lang": "go", @@ -49014,7 +49014,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "source": "atlas api networkPeering createPeeringContainer --help" }, { "lang": "go", @@ -49090,7 +49090,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "source": "atlas api networkPeering listPeeringContainers --help" }, { "lang": "go", @@ -49179,7 +49179,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "source": "atlas api networkPeering deletePeeringContainer --help" }, { "lang": "go", @@ -49257,7 +49257,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "source": "atlas api networkPeering getPeeringContainer --help" }, { "lang": "go", @@ -49358,7 +49358,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "source": "atlas api networkPeering updatePeeringContainer --help" }, { "lang": "go", @@ -49428,7 +49428,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "source": "atlas api customDatabaseRoles listCustomDatabaseRoles --help" }, { "lang": "go", @@ -49516,7 +49516,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles createCustomDatabaseRole --help" }, { "lang": "go", @@ -49598,7 +49598,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles deleteCustomDatabaseRole --help" }, { "lang": "go", @@ -49675,7 +49675,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles getCustomDatabaseRole --help" }, { "lang": "go", @@ -49772,7 +49772,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles updateCustomDatabaseRole --help" }, { "lang": "go", @@ -49855,7 +49855,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "source": "atlas api dataFederation listFederatedDatabases --help" }, { "lang": "go", @@ -49940,7 +49940,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "source": "atlas api dataFederation createFederatedDatabase --help" }, { "lang": "go", @@ -50016,7 +50016,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "source": "atlas api dataFederation deleteFederatedDatabase --help" }, { "lang": "go", @@ -50093,7 +50093,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "source": "atlas api dataFederation getFederatedDatabase --help" }, { "lang": "go", @@ -50190,7 +50190,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "source": "atlas api dataFederation updateFederatedDatabase --help" }, { "lang": "go", @@ -50272,7 +50272,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimits --help" }, { "lang": "go", @@ -50360,7 +50360,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "source": "atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "go", @@ -50449,7 +50449,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimit --help" }, { "lang": "go", @@ -50552,7 +50552,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "source": "atlas api dataFederation createOneDataFederationQueryLimit --help" }, { "lang": "go", @@ -50658,7 +50658,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "source": "atlas api dataFederation downloadFederatedDatabaseQueryLogs --help" }, { "lang": "go", @@ -50734,7 +50734,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "source": "atlas api databaseUsers listDatabaseUsers --help" }, { "lang": "go", @@ -50974,7 +50974,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "source": "atlas api databaseUsers createDatabaseUser --help" }, { "lang": "go", @@ -51066,7 +51066,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "source": "atlas api databaseUsers deleteDatabaseUser --help" }, { "lang": "go", @@ -51153,7 +51153,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "source": "atlas api databaseUsers getDatabaseUser --help" }, { "lang": "go", @@ -51260,7 +51260,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "source": "atlas api databaseUsers updateDatabaseUser --help" }, { "lang": "go", @@ -51348,7 +51348,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "source": "atlas api x509Authentication listDatabaseUserCertificates --help" }, { "lang": "go", @@ -51450,7 +51450,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "source": "atlas api x509Authentication createDatabaseUserCertificate --help" }, { "lang": "go", @@ -51583,7 +51583,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "source": "atlas api accessTracking listAccessLogsByClusterName --help" }, { "lang": "go", @@ -51713,7 +51713,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "source": "atlas api accessTracking listAccessLogsByHostname --help" }, { "lang": "go", @@ -51780,7 +51780,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help" }, { "lang": "go", @@ -51865,7 +51865,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help" }, { "lang": "go", @@ -51944,7 +51944,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "go", @@ -52032,7 +52032,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -52134,7 +52134,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "go", @@ -52223,7 +52223,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -52366,7 +52366,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "source": "atlas api events listProjectEvents --help" }, { "lang": "go", @@ -52457,7 +52457,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "source": "atlas api events getProjectEvent --help" }, { "lang": "go", @@ -52527,7 +52527,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "source": "atlas api monitoringAndLogs listMetricTypes --help" }, { "lang": "go", @@ -52643,7 +52643,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "source": "atlas api monitoringAndLogs listIndexMetrics --help" }, { "lang": "go", @@ -52762,7 +52762,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "source": "atlas api monitoringAndLogs getIndexMetrics --help" }, { "lang": "go", @@ -52873,7 +52873,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "source": "atlas api monitoringAndLogs getMeasurements --help" }, { "lang": "go", @@ -52955,7 +52955,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "source": "atlas api thirdPartyIntegrations listThirdPartyIntegrations --help" }, { "lang": "go", @@ -53050,7 +53050,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help" }, { "lang": "go", @@ -53143,7 +53143,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations getThirdPartyIntegration --help" }, { "lang": "go", @@ -53259,7 +53259,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations createThirdPartyIntegration --help" }, { "lang": "go", @@ -53372,7 +53372,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations updateThirdPartyIntegration --help" }, { "lang": "go", @@ -53452,7 +53452,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "source": "atlas api projects listProjectInvitations --help" }, { "lang": "go", @@ -53536,7 +53536,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "source": "atlas api projects updateProjectInvitation --help" }, { "lang": "go", @@ -53614,7 +53614,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "source": "atlas api projects createProjectInvitation --help" }, { "lang": "go", @@ -53692,7 +53692,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "source": "atlas api projects deleteProjectInvitation --help" }, { "lang": "go", @@ -53774,7 +53774,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "source": "atlas api projects getProjectInvitation --help" }, { "lang": "go", @@ -53867,7 +53867,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "source": "atlas api projects updateProjectInvitationById --help" }, { "lang": "go", @@ -53938,7 +53938,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "source": "atlas api projects returnAllIpaddresses --help" }, { "lang": "go", @@ -54017,7 +54017,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "source": "atlas api projects listProjectLimits --help" }, { "lang": "go", @@ -54114,7 +54114,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "source": "atlas api projects deleteProjectLimit --help" }, { "lang": "go", @@ -54212,7 +54212,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "source": "atlas api projects getProjectLimit --help" }, { "lang": "go", @@ -54321,7 +54321,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "source": "atlas api projects setProjectLimit --help" }, { "lang": "go", @@ -54411,7 +54411,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "source": "atlas api cloudMigrationService createPushMigration --help" }, { "lang": "go", @@ -54502,7 +54502,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "source": "atlas api cloudMigrationService validateMigration --help" }, { "lang": "go", @@ -54589,7 +54589,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "source": "atlas api cloudMigrationService getValidationStatus --help" }, { "lang": "go", @@ -54665,7 +54665,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "source": "atlas api cloudMigrationService getPushMigration --help" }, { "lang": "go", @@ -54741,7 +54741,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "source": "atlas api cloudMigrationService cutoverMigration --help" }, { "lang": "go", @@ -54805,7 +54805,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "source": "atlas api maintenanceWindows resetMaintenanceWindow --help" }, { "lang": "go", @@ -54870,7 +54870,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "source": "atlas api maintenanceWindows getMaintenanceWindow --help" }, { "lang": "go", @@ -54946,7 +54946,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "source": "atlas api maintenanceWindows updateMaintenanceWindow --help" }, { "lang": "go", @@ -55010,7 +55010,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "source": "atlas api maintenanceWindows toggleMaintenanceAutoDefer --help" }, { "lang": "go", @@ -55074,7 +55074,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "source": "atlas api maintenanceWindows deferMaintenanceWindow --help" }, { "lang": "go", @@ -55141,7 +55141,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "source": "atlas api performanceAdvisor getManagedSlowMs --help" }, { "lang": "go", @@ -55208,7 +55208,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor disableSlowOperationThresholding --help" }, { "lang": "go", @@ -55275,7 +55275,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor enableSlowOperationThresholding --help" }, { "lang": "go", @@ -55403,7 +55403,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "source": "atlas api projects getProjectLtsversions --help" }, { "lang": "go", @@ -55496,7 +55496,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "source": "atlas api networkPeering listPeeringConnections --help" }, { "lang": "go", @@ -55585,7 +55585,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "source": "atlas api networkPeering createPeeringConnection --help" }, { "lang": "go", @@ -55667,7 +55667,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "source": "atlas api networkPeering deletePeeringConnection --help" }, { "lang": "go", @@ -55747,7 +55747,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "source": "atlas api networkPeering getPeeringConnection --help" }, { "lang": "go", @@ -55844,7 +55844,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "source": "atlas api networkPeering updatePeeringConnection --help" }, { "lang": "go", @@ -55914,7 +55914,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "source": "atlas api dataLakePipelines listPipelines --help" }, { "lang": "go", @@ -55993,7 +55993,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "source": "atlas api dataLakePipelines createPipeline --help" }, { "lang": "go", @@ -56072,7 +56072,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "source": "atlas api dataLakePipelines deletePipeline --help" }, { "lang": "go", @@ -56152,7 +56152,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "source": "atlas api dataLakePipelines getPipeline --help" }, { "lang": "go", @@ -56246,7 +56246,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "source": "atlas api dataLakePipelines updatePipeline --help" }, { "lang": "go", @@ -56331,7 +56331,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "source": "atlas api dataLakePipelines listPipelineSchedules --help" }, { "lang": "go", @@ -56432,7 +56432,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "source": "atlas api dataLakePipelines listPipelineSnapshots --help" }, { "lang": "go", @@ -56514,7 +56514,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "source": "atlas api dataLakePipelines pausePipeline --help" }, { "lang": "go", @@ -56596,7 +56596,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "source": "atlas api dataLakePipelines resumePipeline --help" }, { "lang": "go", @@ -56697,7 +56697,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "source": "atlas api dataLakePipelines listPipelineRuns --help" }, { "lang": "go", @@ -56792,7 +56792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "source": "atlas api dataLakePipelines deletePipelineRunDataset --help" }, { "lang": "go", @@ -56885,7 +56885,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "source": "atlas api dataLakePipelines getPipelineRun --help" }, { "lang": "go", @@ -56978,7 +56978,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "source": "atlas api dataLakePipelines triggerSnapshotIngestion --help" }, { "lang": "go", @@ -57060,7 +57060,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "source": "atlas api privateEndpointServices createPrivateEndpointService --help" }, { "lang": "go", @@ -57130,7 +57130,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -57209,7 +57209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -57290,7 +57290,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "source": "atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help" }, { "lang": "go", @@ -57381,7 +57381,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -57471,7 +57471,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -57559,7 +57559,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -57658,7 +57658,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -57743,7 +57743,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "source": "atlas api privateEndpointServices listPrivateEndpointServices --help" }, { "lang": "go", @@ -57837,7 +57837,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "source": "atlas api privateEndpointServices deletePrivateEndpointService --help" }, { "lang": "go", @@ -57932,7 +57932,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "source": "atlas api privateEndpointServices getPrivateEndpointService --help" }, { "lang": "go", @@ -58046,7 +58046,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "source": "atlas api privateEndpointServices createPrivateEndpoint --help" }, { "lang": "go", @@ -58150,7 +58150,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "source": "atlas api privateEndpointServices deletePrivateEndpoint --help" }, { "lang": "go", @@ -58255,7 +58255,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "source": "atlas api privateEndpointServices getPrivateEndpoint --help" }, { "lang": "go", @@ -58327,7 +58327,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "source": "atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "go", @@ -58411,7 +58411,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "source": "atlas api networkPeering disablePeering --help" }, { "lang": "go", @@ -58493,7 +58493,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "source": "atlas api dataFederation listDataFederationPrivateEndpoints --help" }, { "lang": "go", @@ -58572,7 +58572,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation createDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -58654,7 +58654,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation deleteDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -58737,7 +58737,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation getDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -58813,7 +58813,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "source": "atlas api monitoringAndLogs listAtlasProcesses --help" }, { "lang": "go", @@ -58891,7 +58891,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "source": "atlas api monitoringAndLogs getAtlasProcess --help" }, { "lang": "go", @@ -58967,7 +58967,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help" }, { "lang": "go", @@ -59054,7 +59054,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "source": "atlas api monitoringAndLogs listDatabases --help" }, { "lang": "go", @@ -59141,7 +59141,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "source": "atlas api monitoringAndLogs getDatabase --help" }, { "lang": "go", @@ -59267,7 +59267,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "source": "atlas api monitoringAndLogs getDatabaseMeasurements --help" }, { "lang": "go", @@ -59354,7 +59354,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "source": "atlas api monitoringAndLogs listDiskPartitions --help" }, { "lang": "go", @@ -59438,7 +59438,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "source": "atlas api monitoringAndLogs listDiskMeasurements --help" }, { "lang": "go", @@ -59573,7 +59573,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "source": "atlas api monitoringAndLogs getDiskMeasurements --help" }, { "lang": "go", @@ -59815,7 +59815,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "source": "atlas api monitoringAndLogs getHostMeasurements --help" }, { "lang": "go", @@ -59911,7 +59911,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "source": "atlas api performanceAdvisor listSlowQueryNamespaces --help" }, { "lang": "go", @@ -60031,7 +60031,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "source": "atlas api performanceAdvisor listSlowQueries --help" }, { "lang": "go", @@ -60167,7 +60167,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "source": "atlas api performanceAdvisor listSuggestedIndexes --help" }, { "lang": "go", @@ -60294,7 +60294,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "go", @@ -60367,7 +60367,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport deletePushBasedLogConfiguration --help" }, { "lang": "go", @@ -60438,7 +60438,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport getPushBasedLogConfiguration --help" }, { "lang": "go", @@ -60521,7 +60521,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport updatePushBasedLogConfiguration --help" }, { "lang": "go", @@ -60604,7 +60604,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport createPushBasedLogConfiguration --help" }, { "lang": "go", @@ -60686,7 +60686,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "source": "atlas api clusters loadSampleDataset --help" }, { "lang": "go", @@ -60762,7 +60762,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "source": "atlas api clusters getSampleDatasetLoadStatus --help" }, { "lang": "go", @@ -60838,7 +60838,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "source": "atlas api serverlessInstances listServerlessInstances --help" }, { "lang": "go", @@ -60920,7 +60920,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "source": "atlas api serverlessInstances createServerlessInstance --help" }, { "lang": "go", @@ -61011,7 +61011,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "source": "atlas api cloudBackups listServerlessBackupRestoreJobs --help" }, { "lang": "go", @@ -61108,7 +61108,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups createServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -61202,7 +61202,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups getServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -61293,7 +61293,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "source": "atlas api cloudBackups listServerlessBackups --help" }, { "lang": "go", @@ -61385,7 +61385,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "source": "atlas api cloudBackups getServerlessBackup --help" }, { "lang": "go", @@ -61464,7 +61464,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor getServerlessAutoIndexing --help" }, { "lang": "go", @@ -61547,7 +61547,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor setServerlessAutoIndexing --help" }, { "lang": "go", @@ -61632,7 +61632,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "source": "atlas api serverlessInstances deleteServerlessInstance --help" }, { "lang": "go", @@ -61715,7 +61715,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "source": "atlas api serverlessInstances getServerlessInstance --help" }, { "lang": "go", @@ -61806,7 +61806,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "source": "atlas api serverlessInstances updateServerlessInstance --help" }, { "lang": "go", @@ -61882,7 +61882,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "source": "atlas api groups listProjectServiceAccounts --help" }, { "lang": "go", @@ -61962,7 +61962,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "source": "atlas api groups createProjectServiceAccount --help" }, { "lang": "go", @@ -62042,7 +62042,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "source": "atlas api groups deleteProjectServiceAccount --help" }, { "lang": "go", @@ -62119,7 +62119,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "source": "atlas api groups getProjectServiceAccount --help" }, { "lang": "go", @@ -62210,7 +62210,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "source": "atlas api groups updateProjectServiceAccount --help" }, { "lang": "go", @@ -62303,7 +62303,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "source": "atlas api groups addProjectServiceAccount --help" }, { "lang": "go", @@ -62376,7 +62376,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "source": "atlas api projects getProjectSettings --help" }, { "lang": "go", @@ -62458,7 +62458,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "source": "atlas api projects updateProjectSettings --help" }, { "lang": "go", @@ -62531,7 +62531,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "source": "atlas api streams listStreamInstances --help" }, { "lang": "go", @@ -62610,7 +62610,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "source": "atlas api streams createStreamInstance --help" }, { "lang": "go", @@ -62692,7 +62692,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "source": "atlas api streams deleteStreamInstance --help" }, { "lang": "go", @@ -62777,7 +62777,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "source": "atlas api streams getStreamInstance --help" }, { "lang": "go", @@ -62871,7 +62871,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "source": "atlas api streams updateStreamInstance --help" }, { "lang": "go", @@ -62980,7 +62980,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "source": "atlas api streams downloadStreamTenantAuditLogs --help" }, { "lang": "go", @@ -63065,7 +63065,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "source": "atlas api streams listStreamConnections --help" }, { "lang": "go", @@ -63156,7 +63156,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "source": "atlas api streams createStreamConnection --help" }, { "lang": "go", @@ -63247,7 +63247,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "source": "atlas api streams deleteStreamConnection --help" }, { "lang": "go", @@ -63330,7 +63330,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "source": "atlas api streams getStreamConnection --help" }, { "lang": "go", @@ -63433,7 +63433,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "source": "atlas api streams updateStreamConnection --help" }, { "lang": "go", @@ -63518,7 +63518,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "source": "atlas api teams listProjectTeams --help" }, { "lang": "go", @@ -63610,7 +63610,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "source": "atlas api teams addAllTeamsToProject --help" }, { "lang": "go", @@ -63696,7 +63696,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "source": "atlas api teams removeProjectTeam --help" }, { "lang": "go", @@ -63797,7 +63797,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "source": "atlas api teams updateTeamRoles --help" }, { "lang": "go", @@ -63864,7 +63864,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "source": "atlas api ldapConfiguration getLdapconfiguration --help" }, { "lang": "go", @@ -63943,7 +63943,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "source": "atlas api ldapConfiguration saveLdapconfiguration --help" }, { "lang": "go", @@ -64007,7 +64007,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "source": "atlas api x509Authentication disableCustomerManagedX509 --help" }, { "lang": "go", @@ -64074,7 +64074,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "source": "atlas api ldapConfiguration deleteLdapconfiguration --help" }, { "lang": "go", @@ -64155,7 +64155,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "source": "atlas api ldapConfiguration verifyLdapconfiguration --help" }, { "lang": "go", @@ -64234,7 +64234,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "source": "atlas api ldapConfiguration getLdapconfigurationStatus --help" }, { "lang": "go", @@ -64328,7 +64328,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "source": "atlas api projects listProjectUsers --help" }, { "lang": "go", @@ -64410,7 +64410,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "source": "atlas api projects removeProjectUser --help" }, { "lang": "go", @@ -64506,7 +64506,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "source": "atlas api projects updateProjectRoles --help" }, { "lang": "go", @@ -64596,7 +64596,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "source": "atlas api organizations listOrganizations --help" }, { "lang": "go", @@ -64681,7 +64681,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "source": "atlas api organizations createOrganization --help" }, { "lang": "go", @@ -64757,7 +64757,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "source": "atlas api organizations deleteOrganization --help" }, { "lang": "go", @@ -64831,7 +64831,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "source": "atlas api organizations getOrganization --help" }, { "lang": "go", @@ -64916,7 +64916,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "source": "atlas api organizations renameOrganization --help" }, { "lang": "go", @@ -64996,7 +64996,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "source": "atlas api programmaticApiKeys listApiKeys --help" }, { "lang": "go", @@ -65076,7 +65076,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "source": "atlas api programmaticApiKeys createApiKey --help" }, { "lang": "go", @@ -65159,7 +65159,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "source": "atlas api programmaticApiKeys deleteApiKey --help" }, { "lang": "go", @@ -65240,7 +65240,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "source": "atlas api programmaticApiKeys getApiKey --help" }, { "lang": "go", @@ -65335,7 +65335,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "source": "atlas api programmaticApiKeys updateApiKey --help" }, { "lang": "go", @@ -65427,7 +65427,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "source": "atlas api programmaticApiKeys listApiKeyAccessListsEntries --help" }, { "lang": "go", @@ -65533,7 +65533,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys createApiKeyAccessList --help" }, { "lang": "go", @@ -65633,7 +65633,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "source": "atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help" }, { "lang": "go", @@ -65728,7 +65728,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys getApiKeyAccessList --help" }, { "lang": "go", @@ -65806,7 +65806,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "source": "atlas api invoices createCostExplorerQueryProcess --help" }, { "lang": "go", @@ -65897,7 +65897,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "source": "atlas api invoices createCostExplorerQueryProcess1 --help" }, { "lang": "go", @@ -66012,7 +66012,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "source": "atlas api events listOrganizationEvents --help" }, { "lang": "go", @@ -66103,7 +66103,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "source": "atlas api events getOrganizationEvent --help" }, { "lang": "go", @@ -66176,7 +66176,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "source": "atlas api federatedAuthentication getFederationSettings --help" }, { "lang": "go", @@ -66266,7 +66266,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "source": "atlas api organizations listOrganizationProjects --help" }, { "lang": "go", @@ -66351,7 +66351,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "source": "atlas api organizations listOrganizationInvitations --help" }, { "lang": "go", @@ -66433,7 +66433,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "source": "atlas api organizations updateOrganizationInvitation --help" }, { "lang": "go", @@ -66515,7 +66515,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "source": "atlas api organizations createOrganizationInvitation --help" }, { "lang": "go", @@ -66597,7 +66597,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "source": "atlas api organizations deleteOrganizationInvitation --help" }, { "lang": "go", @@ -66677,7 +66677,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "source": "atlas api organizations getOrganizationInvitation --help" }, { "lang": "go", @@ -66771,7 +66771,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "source": "atlas api organizations updateOrganizationInvitationById --help" }, { "lang": "go", @@ -66929,7 +66929,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "source": "atlas api invoices listInvoices --help" }, { "lang": "go", @@ -66999,7 +66999,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "source": "atlas api invoices listPendingInvoices --help" }, { "lang": "go", @@ -67087,7 +67087,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "source": "atlas api invoices getInvoice --help" }, { "lang": "go", @@ -67168,7 +67168,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "source": "atlas api invoices downloadInvoiceCsv --help" }, { "lang": "go", @@ -67241,7 +67241,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "source": "atlas api cloudMigrationService listSourceProjects --help" }, { "lang": "go", @@ -67308,7 +67308,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "source": "atlas api cloudMigrationService deleteLinkToken --help" }, { "lang": "go", @@ -67387,7 +67387,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "source": "atlas api cloudMigrationService createLinkToken --help" }, { "lang": "go", @@ -67463,7 +67463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "source": "atlas api organizations listServiceAccounts --help" }, { "lang": "go", @@ -67542,7 +67542,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "source": "atlas api organizations createServiceAccount --help" }, { "lang": "go", @@ -67618,7 +67618,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "source": "atlas api organizations deleteServiceAccount --help" }, { "lang": "go", @@ -67695,7 +67695,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "source": "atlas api organizations getServiceAccount --help" }, { "lang": "go", @@ -67786,7 +67786,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "source": "atlas api organizations updateServiceAccount --help" }, { "lang": "go", @@ -67871,7 +67871,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "source": "atlas api organizations listServiceAccountProjects --help" }, { "lang": "go", @@ -67961,7 +67961,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "source": "atlas api organizations createServiceAccountSecret --help" }, { "lang": "go", @@ -68046,7 +68046,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "source": "atlas api organizations deleteServiceAccountSecret --help" }, { "lang": "go", @@ -68119,7 +68119,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "source": "atlas api organizations getOrganizationSettings --help" }, { "lang": "go", @@ -68201,7 +68201,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "source": "atlas api organizations updateOrganizationSettings --help" }, { "lang": "go", @@ -68287,7 +68287,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "source": "atlas api teams listOrganizationTeams --help" }, { "lang": "go", @@ -68376,7 +68376,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "source": "atlas api teams createTeam --help" }, { "lang": "go", @@ -68462,7 +68462,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "source": "atlas api teams getTeamByName --help" }, { "lang": "go", @@ -68551,7 +68551,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "source": "atlas api teams deleteTeam --help" }, { "lang": "go", @@ -68638,7 +68638,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "source": "atlas api teams getTeamById --help" }, { "lang": "go", @@ -68739,7 +68739,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "source": "atlas api teams renameTeam --help" }, { "lang": "go", @@ -68837,7 +68837,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "source": "atlas api teams listTeamUsers --help" }, { "lang": "go", @@ -68941,7 +68941,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "source": "atlas api teams addTeamUser --help" }, { "lang": "go", @@ -69039,7 +69039,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "source": "atlas api teams removeTeamUser --help" }, { "lang": "go", @@ -69121,7 +69121,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "source": "atlas api organizations listOrganizationUsers --help" }, { "lang": "go", @@ -69206,7 +69206,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "source": "atlas api organizations removeOrganizationUser --help" }, { "lang": "go", @@ -69302,7 +69302,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "source": "atlas api organizations updateOrganizationRoles --help" }, { "lang": "go", @@ -69355,7 +69355,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "source": "atlas api root returnAllControlPlaneIpaddresses --help" }, { "lang": "go", @@ -69433,7 +69433,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUser --help" + "source": "atlas api mongoDbCloudUsers createUser --help" }, { "lang": "go", @@ -69510,7 +69510,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "source": "atlas api mongoDbCloudUsers getUserByUsername --help" }, { "lang": "go", @@ -69589,7 +69589,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUser --help" + "source": "atlas api mongoDbCloudUsers getUser --help" }, { "lang": "go", 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 0e1f11a571..2310e97041 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 @@ -29601,7 +29601,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSystemStatus --help + source: atlas api root getSystemStatus --help - label: Go lang: go source: | @@ -29671,7 +29671,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help + source: atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help - label: Go lang: go source: | @@ -29742,7 +29742,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClustersForAllProjects --help + source: atlas api clusters listClustersForAllProjects --help - label: Go lang: go source: | @@ -29813,7 +29813,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listEventTypes --help + source: atlas api events listEventTypes --help - label: Go lang: go source: | @@ -29882,7 +29882,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederationApp --help + source: atlas api federatedAuthentication deleteFederationApp --help - label: Go lang: go source: | @@ -29956,7 +29956,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listConnectedOrgConfigs --help + source: atlas api federatedAuthentication listConnectedOrgConfigs --help - label: Go lang: go source: | @@ -30038,7 +30038,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeConnectedOrgConfig --help + source: atlas api federatedAuthentication removeConnectedOrgConfig --help - label: Go lang: go source: | @@ -30119,7 +30119,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getConnectedOrgConfig --help + source: atlas api federatedAuthentication getConnectedOrgConfig --help - label: Go lang: go source: | @@ -30207,7 +30207,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateConnectedOrgConfig --help + source: atlas api federatedAuthentication updateConnectedOrgConfig --help - label: Go lang: go source: | @@ -30284,7 +30284,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listRoleMappings --help + source: atlas api federatedAuthentication listRoleMappings --help - label: Go lang: go source: | @@ -30363,7 +30363,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRoleMapping --help + source: atlas api federatedAuthentication createRoleMapping --help - label: Go lang: go source: | @@ -30448,7 +30448,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteRoleMapping --help + source: atlas api federatedAuthentication deleteRoleMapping --help - label: Go lang: go source: | @@ -30530,7 +30530,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRoleMapping --help + source: atlas api federatedAuthentication getRoleMapping --help - label: Go lang: go source: | @@ -30619,7 +30619,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateRoleMapping --help + source: atlas api federatedAuthentication updateRoleMapping --help - label: Go lang: go source: | @@ -30719,7 +30719,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIdentityProviders --help + source: atlas api federatedAuthentication listIdentityProviders --help - label: Go lang: go source: | @@ -30802,7 +30802,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createIdentityProvider --help + source: atlas api federatedAuthentication createIdentityProvider --help - label: Go lang: go source: | @@ -30883,7 +30883,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteIdentityProvider --help + source: atlas api federatedAuthentication deleteIdentityProvider --help - label: Go lang: go source: | @@ -30963,7 +30963,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProvider --help + source: atlas api federatedAuthentication getIdentityProvider --help - label: Go lang: go source: | @@ -31051,7 +31051,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateIdentityProvider --help + source: atlas api federatedAuthentication updateIdentityProvider --help - label: Go lang: go source: | @@ -31132,7 +31132,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help + source: atlas api federatedAuthentication revokeJwksFromIdentityProvider --help - label: Go lang: go source: | @@ -31204,7 +31204,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProviderMetadata --help + source: atlas api federatedAuthentication getIdentityProviderMetadata --help - label: Go lang: go source: | @@ -31277,7 +31277,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjects --help + source: atlas api projects listProjects --help - label: Go lang: go source: | @@ -31367,7 +31367,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProject --help + source: atlas api projects createProject --help - label: Go lang: go source: | @@ -31442,7 +31442,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProject --help + source: atlas api projects deleteProject --help - label: Go lang: go source: | @@ -31512,7 +31512,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProject --help + source: atlas api projects getProject --help - label: Go lang: go source: | @@ -31593,7 +31593,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProject --help + source: atlas api projects updateProject --help - label: Go lang: go source: | @@ -31678,7 +31678,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToProject --help + source: atlas api projects addUserToProject --help - label: Go lang: go source: | @@ -31757,7 +31757,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectIpAccessLists --help + source: atlas api projectIpAccessList listProjectIpAccessLists --help - label: Go lang: go source: | @@ -31844,7 +31844,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectIpAccessList --help + source: atlas api projectIpAccessList createProjectIpAccessList --help - label: Go lang: go source: | @@ -31935,7 +31935,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectIpAccessList --help + source: atlas api projectIpAccessList deleteProjectIpAccessList --help - label: Go lang: go source: | @@ -32018,7 +32018,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpList --help + source: atlas api projectIpAccessList getProjectIpList --help - label: Go lang: go source: | @@ -32101,7 +32101,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpAccessListStatus --help + source: atlas api projectIpAccessList getProjectIpAccessListStatus --help - label: Go lang: go source: | @@ -32176,7 +32176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurations --help + source: atlas api alertConfigurations listAlertConfigurations --help - label: Go lang: go source: | @@ -32256,7 +32256,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAlertConfiguration --help + source: atlas api alertConfigurations createAlertConfiguration --help - label: Go lang: go source: | @@ -32342,7 +32342,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAlertConfiguration --help + source: atlas api alertConfigurations deleteAlertConfiguration --help - label: Go lang: go source: | @@ -32425,7 +32425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlertConfiguration --help + source: atlas api alertConfigurations getAlertConfiguration --help - label: Go lang: go source: | @@ -32517,7 +32517,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAlertConfiguration --help + source: atlas api alertConfigurations toggleAlertConfiguration --help - label: Go lang: go source: | @@ -32615,7 +32615,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAlertConfiguration --help + source: atlas api alertConfigurations updateAlertConfiguration --help - label: Go lang: go source: | @@ -32706,7 +32706,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertsByAlertConfigurationId --help + source: atlas api alerts listAlertsByAlertConfigurationId --help - label: Go lang: go source: | @@ -32792,7 +32792,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlerts --help + source: atlas api alerts listAlerts --help - label: Go lang: go source: | @@ -32875,7 +32875,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlert --help + source: atlas api alerts getAlert --help - label: Go lang: go source: | @@ -32967,7 +32967,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acknowledgeAlert --help + source: atlas api alerts acknowledgeAlert --help - label: Go lang: go source: | @@ -33058,7 +33058,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationsByAlertId --help + source: atlas api alertConfigurations listAlertConfigurationsByAlertId --help - label: Go lang: go source: | @@ -33133,7 +33133,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectApiKeys --help + source: atlas api programmaticApiKeys listProjectApiKeys --help - label: Go lang: go source: | @@ -33208,7 +33208,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectApiKey --help + source: atlas api programmaticApiKeys createProjectApiKey --help - label: Go lang: go source: | @@ -33295,7 +33295,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectApiKey --help + source: atlas api programmaticApiKeys removeProjectApiKey --help - label: Go lang: go source: | @@ -33384,7 +33384,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKeyRoles --help + source: atlas api programmaticApiKeys updateApiKeyRoles --help - label: Go lang: go source: | @@ -33474,7 +33474,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectApiKey --help + source: atlas api programmaticApiKeys addProjectApiKey --help - label: Go lang: go source: | @@ -33547,7 +33547,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAuditingConfiguration --help + source: atlas api auditing getAuditingConfiguration --help - label: Go lang: go source: | @@ -33624,7 +33624,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAuditingConfiguration --help + source: atlas api auditing updateAuditingConfiguration --help - label: Go lang: go source: | @@ -33697,7 +33697,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAWSCustomDNS --help + source: atlas api awsClustersDns getAwscustomDns --help - label: Go lang: go source: | @@ -33772,7 +33772,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAWSCustomDNS --help + source: atlas api awsClustersDns toggleAwscustomDns --help - label: Go lang: go source: | @@ -33849,7 +33849,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listExportBuckets --help + source: atlas api cloudBackups listExportBuckets --help - label: Go lang: go source: | @@ -33932,7 +33932,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createExportBucket --help + source: atlas api cloudBackups createExportBucket --help - label: Go lang: go source: | @@ -34019,7 +34019,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteExportBucket --help + source: atlas api cloudBackups deleteExportBucket --help - label: Go lang: go source: | @@ -34099,7 +34099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getExportBucket --help + source: atlas api cloudBackups getExportBucket --help - label: Go lang: go source: | @@ -34171,7 +34171,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataProtectionSettings --help + source: atlas api cloudBackups getDataProtectionSettings --help - label: Go lang: go source: | @@ -34257,7 +34257,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDataProtectionSettings --help + source: atlas api cloudBackups updateDataProtectionSettings --help - label: Go lang: go source: | @@ -34330,7 +34330,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderAccessRoles --help + source: atlas api cloudProviderAccess listCloudProviderAccessRoles --help - label: Go lang: go source: | @@ -34408,7 +34408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCloudProviderAccessRole --help + source: atlas api cloudProviderAccess createCloudProviderAccessRole --help - label: Go lang: go source: | @@ -34498,7 +34498,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -34576,7 +34576,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCloudProviderAccessRole --help + source: atlas api cloudProviderAccess getCloudProviderAccessRole --help - label: Go lang: go source: | @@ -34667,7 +34667,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -34750,7 +34750,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusters --help + source: atlas api clusters listClusters --help - label: Go lang: go source: | @@ -34835,7 +34835,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCluster --help + source: atlas api clusters createCluster --help - label: Go lang: go source: | @@ -34927,7 +34927,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCluster --help + source: atlas api clusters deleteCluster --help - label: Go lang: go source: | @@ -35009,7 +35009,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCluster --help + source: atlas api clusters getCluster --help - label: Go lang: go source: | @@ -35101,7 +35101,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCluster --help + source: atlas api clusters updateCluster --help - label: Go lang: go source: | @@ -35238,7 +35238,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help - label: Go lang: go source: | @@ -35328,7 +35328,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForCluster --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help - label: Go lang: go source: | @@ -35409,7 +35409,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupExportJobs --help + source: atlas api cloudBackups listBackupExportJobs --help - label: Go lang: go source: | @@ -35498,7 +35498,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupExportJob --help + source: atlas api cloudBackups createBackupExportJob --help - label: Go lang: go source: | @@ -35585,7 +35585,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupExportJob --help + source: atlas api cloudBackups getBackupExportJob --help - label: Go lang: go source: | @@ -35666,7 +35666,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupRestoreJobs --help + source: atlas api cloudBackups listBackupRestoreJobs --help - label: Go lang: go source: | @@ -35759,7 +35759,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupRestoreJob --help + source: atlas api cloudBackups createBackupRestoreJob --help - label: Go lang: go source: | @@ -35852,7 +35852,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cancelBackupRestoreJob --help + source: atlas api cloudBackups cancelBackupRestoreJob --help - label: Go lang: go source: | @@ -35938,7 +35938,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupRestoreJob --help + source: atlas api cloudBackups getBackupRestoreJob --help - label: Go lang: go source: | @@ -36018,7 +36018,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllBackupSchedules --help + source: atlas api cloudBackups deleteAllBackupSchedules --help - label: Go lang: go source: | @@ -36097,7 +36097,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupSchedule --help + source: atlas api cloudBackups getBackupSchedule --help - label: Go lang: go source: | @@ -36188,7 +36188,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateBackupSchedule --help + source: atlas api cloudBackups updateBackupSchedule --help - label: Go lang: go source: | @@ -36276,7 +36276,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listReplicaSetBackups --help + source: atlas api cloudBackups listReplicaSetBackups --help - label: Go lang: go source: | @@ -36365,7 +36365,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api takeSnapshot --help + source: atlas api cloudBackups takeSnapshot --help - label: Go lang: go source: | @@ -36458,7 +36458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteReplicaSetBackup --help + source: atlas api cloudBackups deleteReplicaSetBackup --help - label: Go lang: go source: | @@ -36546,7 +36546,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getReplicaSetBackup --help + source: atlas api cloudBackups getReplicaSetBackup --help - label: Go lang: go source: | @@ -36641,7 +36641,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateSnapshotRetention --help + source: atlas api cloudBackups updateSnapshotRetention --help - label: Go lang: go source: | @@ -36732,7 +36732,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteShardedClusterBackup --help + source: atlas api cloudBackups deleteShardedClusterBackup --help - label: Go lang: go source: | @@ -36820,7 +36820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getShardedClusterBackup --help + source: atlas api cloudBackups getShardedClusterBackup --help - label: Go lang: go source: | @@ -36900,7 +36900,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listShardedClusterBackups --help + source: atlas api cloudBackups listShardedClusterBackups --help - label: Go lang: go source: | @@ -36993,7 +36993,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadSharedClusterBackup --help + source: atlas api sharedTierSnapshots downloadSharedClusterBackup --help - label: Go lang: go source: | @@ -37088,7 +37088,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -37172,7 +37172,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackupRestoreJobs --help + source: atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help - label: Go lang: go source: | @@ -37261,7 +37261,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -37341,7 +37341,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackups --help + source: atlas api sharedTierSnapshots listSharedClusterBackups --help - label: Go lang: go source: | @@ -37430,7 +37430,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackup --help + source: atlas api sharedTierSnapshots getSharedClusterBackup --help - label: Go lang: go source: | @@ -37512,7 +37512,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupCheckpoints --help + source: atlas api legacyBackup listLegacyBackupCheckpoints --help - label: Go lang: go source: | @@ -37604,7 +37604,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupCheckpoint --help + source: atlas api legacyBackup getLegacyBackupCheckpoint --help - label: Go lang: go source: | @@ -37685,7 +37685,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPinnedNamespaces --help + source: atlas api collectionLevelMetrics getPinnedNamespaces --help - label: Go lang: go source: | @@ -37779,7 +37779,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPatch --help + source: atlas api collectionLevelMetrics pinNamespacesPatch --help - label: Go lang: go source: | @@ -37877,7 +37877,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPut --help + source: atlas api collectionLevelMetrics pinNamespacesPut --help - label: Go lang: go source: | @@ -37969,7 +37969,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api unpinNamespaces --help + source: atlas api collectionLevelMetrics unpinNamespaces --help - label: Go lang: go source: | @@ -38066,7 +38066,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch createAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38167,7 +38167,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesDeprecated --help + source: atlas api atlasSearch listAtlasSearchIndexesDeprecated --help - label: Go lang: go source: | @@ -38261,7 +38261,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38352,7 +38352,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch getAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38454,7 +38454,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch updateAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38541,7 +38541,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedNamespace --help + source: atlas api globalClusters getManagedNamespace --help - label: Go lang: go source: | @@ -38624,7 +38624,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllCustomZoneMappings --help + source: atlas api globalClusters deleteAllCustomZoneMappings --help - label: Go lang: go source: | @@ -38715,7 +38715,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomZoneMapping --help + source: atlas api globalClusters createCustomZoneMapping --help - label: Go lang: go source: | @@ -38814,7 +38814,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteManagedNamespace --help + source: atlas api globalClusters deleteManagedNamespace --help - label: Go lang: go source: | @@ -38907,7 +38907,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createManagedNamespace --help + source: atlas api globalClusters createManagedNamespace --help - label: Go lang: go source: | @@ -39065,7 +39065,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRollingIndex --help + source: atlas api rollingIndex createRollingIndex --help - label: Go lang: go source: | @@ -39153,7 +39153,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOnlineArchives --help + source: atlas api onlineArchive listOnlineArchives --help - label: Go lang: go source: | @@ -39246,7 +39246,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOnlineArchive --help + source: atlas api onlineArchive createOnlineArchive --help - label: Go lang: go source: | @@ -39342,7 +39342,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOnlineArchive --help + source: atlas api onlineArchive deleteOnlineArchive --help - label: Go lang: go source: | @@ -39435,7 +39435,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOnlineArchive --help + source: atlas api onlineArchive getOnlineArchive --help - label: Go lang: go source: | @@ -39537,7 +39537,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOnlineArchive --help + source: atlas api onlineArchive updateOnlineArchive --help - label: Go lang: go source: | @@ -39649,7 +39649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadOnlineArchiveQueryLogs --help + source: atlas api onlineArchive downloadOnlineArchiveQueryLogs --help - label: Go lang: go source: | @@ -39736,7 +39736,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api endOutageSimulation --help + source: atlas api clusterOutageSimulation endOutageSimulation --help - label: Go lang: go source: | @@ -39820,7 +39820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOutageSimulation --help + source: atlas api clusterOutageSimulation getOutageSimulation --help - label: Go lang: go source: | @@ -39909,7 +39909,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startOutageSimulation --help + source: atlas api clusterOutageSimulation startOutageSimulation --help - label: Go lang: go source: | @@ -39997,7 +39997,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterAdvancedConfiguration --help + source: atlas api clusters getClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -40091,7 +40091,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help + source: atlas api clusters updateClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -40172,7 +40172,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api testFailover --help + source: atlas api clusters testFailover --help - label: Go lang: go source: | @@ -40271,7 +40271,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupRestoreJobs --help + source: atlas api legacyBackup listLegacyBackupRestoreJobs --help - label: Go lang: go source: | @@ -40358,7 +40358,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLegacyBackupRestoreJob --help + source: atlas api legacyBackup createLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -40455,7 +40455,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupRestoreJob --help + source: atlas api legacyBackup getLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -40536,7 +40536,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchDeployment --help + source: atlas api atlasSearch deleteAtlasSearchDeployment --help - label: Go lang: go source: | @@ -40617,7 +40617,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchDeployment --help + source: atlas api atlasSearch getAtlasSearchDeployment --help - label: Go lang: go source: | @@ -40707,7 +40707,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchDeployment --help + source: atlas api atlasSearch updateAtlasSearchDeployment --help - label: Go lang: go source: | @@ -40801,7 +40801,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchDeployment --help + source: atlas api atlasSearch createAtlasSearchDeployment --help - label: Go lang: go source: | @@ -40888,7 +40888,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshotSchedule --help + source: atlas api legacyBackup getLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -40976,7 +40976,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + source: atlas api legacyBackup updateLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -41072,7 +41072,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacySnapshots --help + source: atlas api legacyBackup listLegacySnapshots --help - label: Go lang: go source: | @@ -41162,7 +41162,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLegacySnapshot --help + source: atlas api legacyBackup deleteLegacySnapshot --help - label: Go lang: go source: | @@ -41249,7 +41249,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshot --help + source: atlas api legacyBackup getLegacySnapshot --help - label: Go lang: go source: | @@ -41343,7 +41343,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotRetention --help + source: atlas api legacyBackup updateLegacySnapshotRetention --help - label: Go lang: go source: | @@ -41425,7 +41425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterStatus --help + source: atlas api clusters getClusterStatus --help - label: Go lang: go source: | @@ -41538,7 +41538,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostLogs --help + source: atlas api monitoringAndLogs getHostLogs --help - label: Go lang: go source: | @@ -41624,7 +41624,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderRegions --help + source: atlas api clusters listCloudProviderRegions --help - label: Go lang: go source: | @@ -41708,7 +41708,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedCluster --help + source: atlas api clusters upgradeSharedCluster --help - label: Go lang: go source: | @@ -41796,7 +41796,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedClusterToServerless --help + source: atlas api clusters upgradeSharedClusterToServerless --help - label: Go lang: go source: | @@ -41872,7 +41872,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceMetrics --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help - label: Go lang: go source: | @@ -41957,7 +41957,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help + source: atlas api networkPeering listPeeringContainerByCloudProvider --help - label: Go lang: go source: | @@ -42040,7 +42040,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringContainer --help + source: atlas api networkPeering createPeeringContainer --help - label: Go lang: go source: | @@ -42129,7 +42129,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringContainer --help + source: atlas api networkPeering deletePeeringContainer --help - label: Go lang: go source: | @@ -42207,7 +42207,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringContainer --help + source: atlas api networkPeering getPeeringContainer --help - label: Go lang: go source: | @@ -42300,7 +42300,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringContainer --help + source: atlas api networkPeering updatePeeringContainer --help - label: Go lang: go source: | @@ -42376,7 +42376,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainers --help + source: atlas api networkPeering listPeeringContainers --help - label: Go lang: go source: | @@ -42447,7 +42447,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCustomDatabaseRoles --help + source: atlas api customDatabaseRoles listCustomDatabaseRoles --help - label: Go lang: go source: | @@ -42530,7 +42530,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomDatabaseRole --help + source: atlas api customDatabaseRoles createCustomDatabaseRole --help - label: Go lang: go source: | @@ -42613,7 +42613,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCustomDatabaseRole --help + source: atlas api customDatabaseRoles deleteCustomDatabaseRole --help - label: Go lang: go source: | @@ -42689,7 +42689,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCustomDatabaseRole --help + source: atlas api customDatabaseRoles getCustomDatabaseRole --help - label: Go lang: go source: | @@ -42778,7 +42778,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCustomDatabaseRole --help + source: atlas api customDatabaseRoles updateCustomDatabaseRole --help - label: Go lang: go source: | @@ -42862,7 +42862,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFederatedDatabases --help + source: atlas api dataFederation listFederatedDatabases --help - label: Go lang: go source: | @@ -42943,7 +42943,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFederatedDatabase --help + source: atlas api dataFederation createFederatedDatabase --help - label: Go lang: go source: | @@ -43022,7 +43022,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederatedDatabase --help + source: atlas api dataFederation deleteFederatedDatabase --help - label: Go lang: go source: | @@ -43099,7 +43099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederatedDatabase --help + source: atlas api dataFederation getFederatedDatabase --help - label: Go lang: go source: | @@ -43188,7 +43188,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFederatedDatabase --help + source: atlas api dataFederation updateFederatedDatabase --help - label: Go lang: go source: | @@ -43271,7 +43271,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimits --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimits --help - label: Go lang: go source: | @@ -43364,7 +43364,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOneDataFederationInstanceQueryLimit --help + source: atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help - label: Go lang: go source: | @@ -43457,7 +43457,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimit --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimit --help - label: Go lang: go source: | @@ -43560,7 +43560,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + source: atlas api dataFederation createOneDataFederationQueryLimit --help - label: Go lang: go source: | @@ -43663,7 +43663,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFederatedDatabaseQueryLogs --help + source: atlas api dataFederation downloadFederatedDatabaseQueryLogs --help - label: Go lang: go source: | @@ -43737,7 +43737,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUsers --help + source: atlas api databaseUsers listDatabaseUsers --help - label: Go lang: go source: | @@ -43911,7 +43911,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUser --help + source: atlas api databaseUsers createDatabaseUser --help - label: Go lang: go source: | @@ -44014,7 +44014,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDatabaseUser --help + source: atlas api databaseUsers deleteDatabaseUser --help - label: Go lang: go source: | @@ -44110,7 +44110,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseUser --help + source: atlas api databaseUsers getDatabaseUser --help - label: Go lang: go source: | @@ -44219,7 +44219,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDatabaseUser --help + source: atlas api databaseUsers updateDatabaseUser --help - label: Go lang: go source: | @@ -44303,7 +44303,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUserCertificates --help + source: atlas api x509Authentication listDatabaseUserCertificates --help - label: Go lang: go source: | @@ -44401,7 +44401,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUserCertificate --help + source: atlas api x509Authentication createDatabaseUserCertificate --help - label: Go lang: go source: | @@ -44520,7 +44520,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByClusterName --help + source: atlas api accessTracking listAccessLogsByClusterName --help - label: Go lang: go source: | @@ -44632,7 +44632,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByHostname --help + source: atlas api accessTracking listAccessLogsByHostname --help - label: Go lang: go source: | @@ -44704,7 +44704,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help - label: Go lang: go source: | @@ -44797,7 +44797,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help - label: Go lang: go source: | @@ -44878,7 +44878,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help - label: Go lang: go source: | @@ -44961,7 +44961,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -45058,7 +45058,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help - label: Go lang: go source: | @@ -45143,7 +45143,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -45269,7 +45269,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectEvents --help + source: atlas api events listProjectEvents --help - label: Go lang: go source: | @@ -45358,7 +45358,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectEvent --help + source: atlas api events getProjectEvent --help - label: Go lang: go source: | @@ -45429,7 +45429,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listMetricTypes --help + source: atlas api monitoringAndLogs listMetricTypes --help - label: Go lang: go source: | @@ -45530,7 +45530,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIndexMetrics --help + source: atlas api monitoringAndLogs getIndexMetrics --help - label: Go lang: go source: | @@ -45630,7 +45630,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIndexMetrics --help + source: atlas api monitoringAndLogs listIndexMetrics --help - label: Go lang: go source: | @@ -45729,7 +45729,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMeasurements --help + source: atlas api monitoringAndLogs getMeasurements --help - label: Go lang: go source: | @@ -45805,7 +45805,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listThirdPartyIntegrations --help + source: atlas api thirdPartyIntegrations listThirdPartyIntegrations --help - label: Go lang: go source: | @@ -45896,7 +45896,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help - label: Go lang: go source: | @@ -45986,7 +45986,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations getThirdPartyIntegration --help - label: Go lang: go source: | @@ -46088,7 +46088,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations createThirdPartyIntegration --help - label: Go lang: go source: | @@ -46192,7 +46192,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations updateThirdPartyIntegration --help - label: Go lang: go source: | @@ -46274,7 +46274,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectInvitations --help + source: atlas api projects listProjectInvitations --help - label: Go lang: go source: | @@ -46355,7 +46355,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitation --help + source: atlas api projects updateProjectInvitation --help - label: Go lang: go source: | @@ -46436,7 +46436,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectInvitation --help + source: atlas api projects createProjectInvitation --help - label: Go lang: go source: | @@ -46519,7 +46519,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectInvitation --help + source: atlas api projects deleteProjectInvitation --help - label: Go lang: go source: | @@ -46600,7 +46600,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectInvitation --help + source: atlas api projects getProjectInvitation --help - label: Go lang: go source: | @@ -46689,7 +46689,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitationById --help + source: atlas api projects updateProjectInvitationById --help - label: Go lang: go source: | @@ -46765,7 +46765,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllIPAddresses --help + source: atlas api projects returnAllIpaddresses --help - label: Go lang: go source: | @@ -46842,7 +46842,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectLimits --help + source: atlas api projects listProjectLimits --help - label: Go lang: go source: | @@ -46951,7 +46951,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectLimit --help + source: atlas api projects deleteProjectLimit --help - label: Go lang: go source: | @@ -47061,7 +47061,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLimit --help + source: atlas api projects getProjectLimit --help - label: Go lang: go source: | @@ -47181,7 +47181,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setProjectLimit --help + source: atlas api projects setProjectLimit --help - label: Go lang: go source: | @@ -47277,7 +47277,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushMigration --help + source: atlas api cloudMigrationService createPushMigration --help - label: Go lang: go source: | @@ -47356,7 +47356,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushMigration --help + source: atlas api cloudMigrationService getPushMigration --help - label: Go lang: go source: | @@ -47430,7 +47430,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cutoverMigration --help + source: atlas api cloudMigrationService cutoverMigration --help - label: Go lang: go source: | @@ -47519,7 +47519,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateMigration --help + source: atlas api cloudMigrationService validateMigration --help - label: Go lang: go source: | @@ -47608,7 +47608,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getValidationStatus --help + source: atlas api cloudMigrationService getValidationStatus --help - label: Go lang: go source: | @@ -47676,7 +47676,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resetMaintenanceWindow --help + source: atlas api maintenanceWindows resetMaintenanceWindow --help - label: Go lang: go source: | @@ -47744,7 +47744,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMaintenanceWindow --help + source: atlas api maintenanceWindows getMaintenanceWindow --help - label: Go lang: go source: | @@ -47820,7 +47820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateMaintenanceWindow --help + source: atlas api maintenanceWindows updateMaintenanceWindow --help - label: Go lang: go source: | @@ -47892,7 +47892,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help + source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help - label: Go lang: go source: | @@ -47964,7 +47964,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deferMaintenanceWindow --help + source: atlas api maintenanceWindows deferMaintenanceWindow --help - label: Go lang: go source: | @@ -48037,7 +48037,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedSlowMs --help + source: atlas api performanceAdvisor getManagedSlowMs --help - label: Go lang: go source: | @@ -48106,7 +48106,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableSlowOperationThresholding --help + source: atlas api performanceAdvisor disableSlowOperationThresholding --help - label: Go lang: go source: | @@ -48175,7 +48175,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api enableSlowOperationThresholding --help + source: atlas api performanceAdvisor enableSlowOperationThresholding --help - label: Go lang: go source: | @@ -48289,7 +48289,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLTSVersions --help + source: atlas api projects getProjectLtsversions --help - label: Go lang: go source: | @@ -48373,7 +48373,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringConnections --help + source: atlas api networkPeering listPeeringConnections --help - label: Go lang: go source: | @@ -48457,7 +48457,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringConnection --help + source: atlas api networkPeering createPeeringConnection --help - label: Go lang: go source: | @@ -48541,7 +48541,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringConnection --help + source: atlas api networkPeering deletePeeringConnection --help - label: Go lang: go source: | @@ -48620,7 +48620,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringConnection --help + source: atlas api networkPeering getPeeringConnection --help - label: Go lang: go source: | @@ -48710,7 +48710,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringConnection --help + source: atlas api networkPeering updatePeeringConnection --help - label: Go lang: go source: | @@ -48786,7 +48786,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelines --help + source: atlas api dataLakePipelines listPipelines --help - label: Go lang: go source: | @@ -48864,7 +48864,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPipeline --help + source: atlas api dataLakePipelines createPipeline --help - label: Go lang: go source: | @@ -48947,7 +48947,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipeline --help + source: atlas api dataLakePipelines deletePipeline --help - label: Go lang: go source: | @@ -49026,7 +49026,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipeline --help + source: atlas api dataLakePipelines getPipeline --help - label: Go lang: go source: | @@ -49115,7 +49115,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePipeline --help + source: atlas api dataLakePipelines updatePipeline --help - label: Go lang: go source: | @@ -49201,7 +49201,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSchedules --help + source: atlas api dataLakePipelines listPipelineSchedules --help - label: Go lang: go source: | @@ -49291,7 +49291,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSnapshots --help + source: atlas api dataLakePipelines listPipelineSnapshots --help - label: Go lang: go source: | @@ -49371,7 +49371,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pausePipeline --help + source: atlas api dataLakePipelines pausePipeline --help - label: Go lang: go source: | @@ -49455,7 +49455,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resumePipeline --help + source: atlas api dataLakePipelines resumePipeline --help - label: Go lang: go source: | @@ -49549,7 +49549,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineRuns --help + source: atlas api dataLakePipelines listPipelineRuns --help - label: Go lang: go source: | @@ -49639,7 +49639,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipelineRunDataset --help + source: atlas api dataLakePipelines deletePipelineRunDataset --help - label: Go lang: go source: | @@ -49728,7 +49728,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipelineRun --help + source: atlas api dataLakePipelines getPipelineRun --help - label: Go lang: go source: | @@ -49815,7 +49815,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api triggerSnapshotIngestion --help + source: atlas api dataLakePipelines triggerSnapshotIngestion --help - label: Go lang: go source: | @@ -49901,7 +49901,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateEndpointServices --help + source: atlas api privateEndpointServices listPrivateEndpointServices --help - label: Go lang: go source: | @@ -49990,7 +49990,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpointService --help + source: atlas api privateEndpointServices deletePrivateEndpointService --help - label: Go lang: go source: | @@ -50080,7 +50080,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpointService --help + source: atlas api privateEndpointServices getPrivateEndpointService --help - label: Go lang: go source: | @@ -50182,7 +50182,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpoint --help + source: atlas api privateEndpointServices createPrivateEndpoint --help - label: Go lang: go source: | @@ -50282,7 +50282,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpoint --help + source: atlas api privateEndpointServices deletePrivateEndpoint --help - label: Go lang: go source: | @@ -50379,7 +50379,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpoint --help + source: atlas api privateEndpointServices getPrivateEndpoint --help - label: Go lang: go source: | @@ -50458,7 +50458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpointService --help + source: atlas api privateEndpointServices createPrivateEndpointService --help - label: Go lang: go source: | @@ -50533,7 +50533,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -50610,7 +50610,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -50694,7 +50694,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessPrivateEndpoints --help + source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help - label: Go lang: go source: | @@ -50784,7 +50784,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -50875,7 +50875,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -50961,7 +50961,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -51054,7 +51054,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -51131,7 +51131,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + source: atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help - label: Go lang: go source: | @@ -51212,7 +51212,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disablePeering --help + source: atlas api networkPeering disablePeering --help - label: Go lang: go source: | @@ -51292,7 +51292,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDataFederationPrivateEndpoints --help + source: atlas api dataFederation listDataFederationPrivateEndpoints --help - label: Go lang: go source: | @@ -51388,7 +51388,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help + source: atlas api dataFederation createDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -51472,7 +51472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help + source: atlas api dataFederation deleteDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -51553,7 +51553,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataFederationPrivateEndpoint --help + source: atlas api dataFederation getDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -51625,7 +51625,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasProcesses --help + source: atlas api monitoringAndLogs listAtlasProcesses --help - label: Go lang: go source: | @@ -51702,7 +51702,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasProcess --help + source: atlas api monitoringAndLogs getAtlasProcess --help - label: Go lang: go source: | @@ -51814,7 +51814,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help - label: Go lang: go source: | @@ -51886,7 +51886,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForHost --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help - label: Go lang: go source: | @@ -51966,7 +51966,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabases --help + source: atlas api monitoringAndLogs listDatabases --help - label: Go lang: go source: | @@ -52049,7 +52049,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabase --help + source: atlas api monitoringAndLogs getDatabase --help - label: Go lang: go source: | @@ -52158,7 +52158,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseMeasurements --help + source: atlas api monitoringAndLogs getDatabaseMeasurements --help - label: Go lang: go source: | @@ -52238,7 +52238,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskPartitions --help + source: atlas api monitoringAndLogs listDiskPartitions --help - label: Go lang: go source: | @@ -52320,7 +52320,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskMeasurements --help + source: atlas api monitoringAndLogs listDiskMeasurements --help - label: Go lang: go source: | @@ -52445,7 +52445,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDiskMeasurements --help + source: atlas api monitoringAndLogs getDiskMeasurements --help - label: Go lang: go source: | @@ -52681,7 +52681,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostMeasurements --help + source: atlas api monitoringAndLogs getHostMeasurements --help - label: Go lang: go source: | @@ -52778,7 +52778,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueryNamespaces --help + source: atlas api performanceAdvisor listSlowQueryNamespaces --help - label: Go lang: go source: | @@ -52892,7 +52892,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueries --help + source: atlas api performanceAdvisor listSlowQueries --help - label: Go lang: go source: | @@ -53013,7 +53013,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSuggestedIndexes --help + source: atlas api performanceAdvisor listSuggestedIndexes --help - label: Go lang: go source: | @@ -53086,7 +53086,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport deletePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -53158,7 +53158,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport getPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -53238,7 +53238,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport updatePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -53322,7 +53322,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport createPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -53407,7 +53407,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api loadSampleDataset --help + source: atlas api clusters loadSampleDataset --help - label: Go lang: go source: | @@ -53488,7 +53488,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSampleDatasetLoadStatus --help + source: atlas api clusters getSampleDatasetLoadStatus --help - label: Go lang: go source: | @@ -53560,7 +53560,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessInstances --help + source: atlas api serverlessInstances listServerlessInstances --help - label: Go lang: go source: | @@ -53639,7 +53639,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessInstance --help + source: atlas api serverlessInstances createServerlessInstance --help - label: Go lang: go source: | @@ -53726,7 +53726,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackupRestoreJobs --help + source: atlas api cloudBackups listServerlessBackupRestoreJobs --help - label: Go lang: go source: | @@ -53816,7 +53816,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + source: atlas api cloudBackups createServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -53909,7 +53909,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackupRestoreJob --help + source: atlas api cloudBackups getServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -53992,7 +53992,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackups --help + source: atlas api cloudBackups listServerlessBackups --help - label: Go lang: go source: | @@ -54081,7 +54081,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackup --help + source: atlas api cloudBackups getServerlessBackup --help - label: Go lang: go source: | @@ -54159,7 +54159,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessAutoIndexing --help + source: atlas api performanceAdvisor getServerlessAutoIndexing --help - label: Go lang: go source: | @@ -54241,7 +54241,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setServerlessAutoIndexing --help + source: atlas api performanceAdvisor setServerlessAutoIndexing --help - label: Go lang: go source: | @@ -54327,7 +54327,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessInstance --help + source: atlas api serverlessInstances deleteServerlessInstance --help - label: Go lang: go source: | @@ -54408,7 +54408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessInstance --help + source: atlas api serverlessInstances getServerlessInstance --help - label: Go lang: go source: | @@ -54494,7 +54494,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessInstance --help + source: atlas api serverlessInstances updateServerlessInstance --help - label: Go lang: go source: | @@ -54571,7 +54571,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccounts --help + source: atlas api groups listProjectServiceAccounts --help - label: Go lang: go source: | @@ -54649,7 +54649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccount --help + source: atlas api groups createProjectServiceAccount --help - label: Go lang: go source: | @@ -54731,7 +54731,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccount --help + source: atlas api groups deleteProjectServiceAccount --help - label: Go lang: go source: | @@ -54807,7 +54807,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectServiceAccount --help + source: atlas api groups getProjectServiceAccount --help - label: Go lang: go source: | @@ -54892,7 +54892,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectServiceAccount --help + source: atlas api groups updateProjectServiceAccount --help - label: Go lang: go source: | @@ -54983,7 +54983,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectServiceAccount --help + source: atlas api groups addProjectServiceAccount --help - label: Go lang: go source: | @@ -55060,7 +55060,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectSettings --help + source: atlas api projects getProjectSettings --help - label: Go lang: go source: | @@ -55139,7 +55139,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectSettings --help + source: atlas api projects updateProjectSettings --help - label: Go lang: go source: | @@ -55214,7 +55214,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamInstances --help + source: atlas api streams listStreamInstances --help - label: Go lang: go source: | @@ -55291,7 +55291,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstance --help + source: atlas api streams createStreamInstance --help - label: Go lang: go source: | @@ -55374,7 +55374,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamInstance --help + source: atlas api streams deleteStreamInstance --help - label: Go lang: go source: | @@ -55456,7 +55456,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamInstance --help + source: atlas api streams getStreamInstance --help - label: Go lang: go source: | @@ -55543,7 +55543,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamInstance --help + source: atlas api streams updateStreamInstance --help - label: Go lang: go source: | @@ -55647,7 +55647,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadStreamTenantAuditLogs --help + source: atlas api streams downloadStreamTenantAuditLogs --help - label: Go lang: go source: | @@ -55728,7 +55728,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamConnections --help + source: atlas api streams listStreamConnections --help - label: Go lang: go source: | @@ -55813,7 +55813,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamConnection --help + source: atlas api streams createStreamConnection --help - label: Go lang: go source: | @@ -55902,7 +55902,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamConnection --help + source: atlas api streams deleteStreamConnection --help - label: Go lang: go source: | @@ -55983,7 +55983,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamConnection --help + source: atlas api streams getStreamConnection --help - label: Go lang: go source: | @@ -56076,7 +56076,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamConnection --help + source: atlas api streams updateStreamConnection --help - label: Go lang: go source: | @@ -56158,7 +56158,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectTeams --help + source: atlas api teams listProjectTeams --help - label: Go lang: go source: | @@ -56244,7 +56244,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addAllTeamsToProject --help + source: atlas api teams addAllTeamsToProject --help - label: Go lang: go source: | @@ -56332,7 +56332,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectTeam --help + source: atlas api teams removeProjectTeam --help - label: Go lang: go source: | @@ -56425,7 +56425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateTeamRoles --help + source: atlas api teams updateTeamRoles --help - label: Go lang: go source: | @@ -56498,7 +56498,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfiguration --help + source: atlas api ldapConfiguration getLdapconfiguration --help - label: Go lang: go source: | @@ -56578,7 +56578,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api saveLDAPConfiguration --help + source: atlas api ldapConfiguration saveLdapconfiguration --help - label: Go lang: go source: | @@ -56653,7 +56653,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableCustomerManagedX509 --help + source: atlas api x509Authentication disableCustomerManagedX509 --help - label: Go lang: go source: | @@ -56722,7 +56722,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLDAPConfiguration --help + source: atlas api ldapConfiguration deleteLdapconfiguration --help - label: Go lang: go source: | @@ -56800,7 +56800,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyLDAPConfiguration --help + source: atlas api ldapConfiguration verifyLdapconfiguration --help - label: Go lang: go source: | @@ -56882,7 +56882,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfigurationStatus --help + source: atlas api ldapConfiguration getLdapconfigurationStatus --help - label: Go lang: go source: | @@ -56966,7 +56966,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api projects listProjectUsers --help - label: Go lang: go source: | @@ -57046,7 +57046,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api projects removeProjectUser --help - label: Go lang: go source: | @@ -57135,7 +57135,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectRoles --help + source: atlas api projects updateProjectRoles --help - label: Go lang: go source: | @@ -57221,7 +57221,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectByName --help + source: atlas api projects getProjectByName --help - label: Go lang: go source: | @@ -57303,7 +57303,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizations --help + source: atlas api organizations listOrganizations --help - label: Go lang: go source: | @@ -57385,7 +57385,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganization --help + source: atlas api organizations createOrganization --help - label: Go lang: go source: | @@ -57470,7 +57470,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganization --help + source: atlas api organizations deleteOrganization --help - label: Go lang: go source: | @@ -57544,7 +57544,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganization --help + source: atlas api organizations getOrganization --help - label: Go lang: go source: | @@ -57625,7 +57625,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameOrganization --help + source: atlas api organizations renameOrganization --help - label: Go lang: go source: | @@ -57704,7 +57704,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeys --help + source: atlas api programmaticApiKeys listApiKeys --help - label: Go lang: go source: | @@ -57782,7 +57782,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKey --help + source: atlas api programmaticApiKeys createApiKey --help - label: Go lang: go source: | @@ -57867,7 +57867,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKey --help + source: atlas api programmaticApiKeys deleteApiKey --help - label: Go lang: go source: | @@ -57947,7 +57947,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKey --help + source: atlas api programmaticApiKeys getApiKey --help - label: Go lang: go source: | @@ -58036,7 +58036,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKey --help + source: atlas api programmaticApiKeys updateApiKey --help - label: Go lang: go source: | @@ -58124,7 +58124,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeyAccessListsEntries --help + source: atlas api programmaticApiKeys listApiKeyAccessListsEntries --help - label: Go lang: go source: | @@ -58217,7 +58217,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKeyAccessList --help + source: atlas api programmaticApiKeys createApiKeyAccessList --help - label: Go lang: go source: | @@ -58314,7 +58314,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKeyAccessListEntry --help + source: atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help - label: Go lang: go source: | @@ -58404,7 +58404,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKeyAccessList --help + source: atlas api programmaticApiKeys getApiKeyAccessList --help - label: Go lang: go source: | @@ -58481,7 +58481,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess --help + source: atlas api invoices createCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -58572,7 +58572,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess_1 --help + source: atlas api invoices createCostExplorerQueryProcess1 --help - label: Go lang: go source: | @@ -58676,7 +58676,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationEvents --help + source: atlas api events listOrganizationEvents --help - label: Go lang: go source: | @@ -58765,7 +58765,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationEvent --help + source: atlas api events getOrganizationEvent --help - label: Go lang: go source: | @@ -58838,7 +58838,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederationSettings --help + source: atlas api federatedAuthentication getFederationSettings --help - label: Go lang: go source: | @@ -58927,7 +58927,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationProjects --help + source: atlas api organizations listOrganizationProjects --help - label: Go lang: go source: | @@ -59008,7 +59008,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationInvitations --help + source: atlas api organizations listOrganizationInvitations --help - label: Go lang: go source: | @@ -59087,7 +59087,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitation --help + source: atlas api organizations updateOrganizationInvitation --help - label: Go lang: go source: | @@ -59170,7 +59170,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationInvitation --help + source: atlas api organizations createOrganizationInvitation --help - label: Go lang: go source: | @@ -59253,7 +59253,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganizationInvitation --help + source: atlas api organizations deleteOrganizationInvitation --help - label: Go lang: go source: | @@ -59333,7 +59333,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationInvitation --help + source: atlas api organizations getOrganizationInvitation --help - label: Go lang: go source: | @@ -59421,7 +59421,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitationById --help + source: atlas api organizations updateOrganizationInvitationById --help - label: Go lang: go source: | @@ -59558,7 +59558,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listInvoices --help + source: atlas api invoices listInvoices --help - label: Go lang: go source: | @@ -59644,7 +59644,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getInvoice --help + source: atlas api invoices getInvoice --help - label: Go lang: go source: | @@ -59731,7 +59731,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadInvoiceCSV --help + source: atlas api invoices downloadInvoiceCsv --help - label: Go lang: go source: | @@ -59802,7 +59802,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPendingInvoices --help + source: atlas api invoices listPendingInvoices --help - label: Go lang: go source: | @@ -59875,7 +59875,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSourceProjects --help + source: atlas api cloudMigrationService listSourceProjects --help - label: Go lang: go source: | @@ -59945,7 +59945,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLinkToken --help + source: atlas api cloudMigrationService deleteLinkToken --help - label: Go lang: go source: | @@ -60022,7 +60022,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLinkToken --help + source: atlas api cloudMigrationService createLinkToken --help - label: Go lang: go source: | @@ -60099,7 +60099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccounts --help + source: atlas api organizations listServiceAccounts --help - label: Go lang: go source: | @@ -60176,7 +60176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccount --help + source: atlas api organizations createServiceAccount --help - label: Go lang: go source: | @@ -60255,7 +60255,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccount --help + source: atlas api organizations deleteServiceAccount --help - label: Go lang: go source: | @@ -60331,7 +60331,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServiceAccount --help + source: atlas api organizations getServiceAccount --help - label: Go lang: go source: | @@ -60416,7 +60416,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServiceAccount --help + source: atlas api organizations updateServiceAccount --help - label: Go lang: go source: | @@ -60499,7 +60499,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountProjects --help + source: atlas api organizations listServiceAccountProjects --help - label: Go lang: go source: | @@ -60583,7 +60583,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountSecret --help + source: atlas api organizations createServiceAccountSecret --help - label: Go lang: go source: | @@ -60668,7 +60668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountSecret --help + source: atlas api organizations deleteServiceAccountSecret --help - label: Go lang: go source: | @@ -60741,7 +60741,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationSettings --help + source: atlas api organizations getOrganizationSettings --help - label: Go lang: go source: | @@ -60820,7 +60820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationSettings --help + source: atlas api organizations updateOrganizationSettings --help - label: Go lang: go source: | @@ -60903,7 +60903,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationTeams --help + source: atlas api teams listOrganizationTeams --help - label: Go lang: go source: | @@ -60987,7 +60987,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createTeam --help + source: atlas api teams createTeam --help - label: Go lang: go source: | @@ -61076,7 +61076,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteTeam --help + source: atlas api teams deleteTeam --help - label: Go lang: go source: | @@ -61160,7 +61160,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamById --help + source: atlas api teams getTeamById --help - label: Go lang: go source: | @@ -61253,7 +61253,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameTeam --help + source: atlas api teams renameTeam --help - label: Go lang: go source: | @@ -61346,7 +61346,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api teams listTeamUsers --help - label: Go lang: go source: | @@ -61441,7 +61441,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addTeamUser --help + source: atlas api teams addTeamUser --help - label: Go lang: go source: | @@ -61537,7 +61537,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeTeamUser --help + source: atlas api teams removeTeamUser --help - label: Go lang: go source: | @@ -61619,7 +61619,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamByName --help + source: atlas api teams getTeamByName --help - label: Go lang: go source: | @@ -61695,7 +61695,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api organizations listOrganizationUsers --help - label: Go lang: go source: | @@ -61778,7 +61778,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api organizations removeOrganizationUser --help - label: Go lang: go source: | @@ -61867,7 +61867,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationRoles --help + source: atlas api organizations updateOrganizationRoles --help - label: Go lang: go source: | @@ -61934,7 +61934,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help + source: atlas api root returnAllControlPlaneIpaddresses --help - label: Go lang: go source: | @@ -62016,7 +62016,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUser --help + source: atlas api mongoDbCloudUsers createUser --help - label: Go lang: go source: | @@ -62099,7 +62099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUser --help + source: atlas api mongoDbCloudUsers getUser --help - label: Go lang: go source: | @@ -62176,7 +62176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUserByUsername --help + source: atlas api mongoDbCloudUsers getUserByUsername --help - label: Go lang: go source: | 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 ae441ae2e6..7e01b0d909 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 @@ -36460,7 +36460,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "source": "atlas api root getSystemStatus --help" }, { "lang": "go", @@ -36527,7 +36527,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "source": "atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help" }, { "lang": "go", @@ -36600,7 +36600,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "source": "atlas api clusters listClustersForAllProjects --help" }, { "lang": "go", @@ -36673,7 +36673,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "source": "atlas api events listEventTypes --help" }, { "lang": "go", @@ -36737,7 +36737,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "source": "atlas api federatedAuthentication deleteFederationApp --help" }, { "lang": "go", @@ -36813,7 +36813,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "source": "atlas api federatedAuthentication listConnectedOrgConfigs --help" }, { "lang": "go", @@ -36896,7 +36896,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication removeConnectedOrgConfig --help" }, { "lang": "go", @@ -36977,7 +36977,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication getConnectedOrgConfig --help" }, { "lang": "go", @@ -37069,7 +37069,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication updateConnectedOrgConfig --help" }, { "lang": "go", @@ -37142,7 +37142,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "source": "atlas api federatedAuthentication listRoleMappings --help" }, { "lang": "go", @@ -37224,7 +37224,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "source": "atlas api federatedAuthentication createRoleMapping --help" }, { "lang": "go", @@ -37307,7 +37307,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "source": "atlas api federatedAuthentication deleteRoleMapping --help" }, { "lang": "go", @@ -37391,7 +37391,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "source": "atlas api federatedAuthentication getRoleMapping --help" }, { "lang": "go", @@ -37486,7 +37486,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "source": "atlas api federatedAuthentication updateRoleMapping --help" }, { "lang": "go", @@ -37594,7 +37594,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "source": "atlas api federatedAuthentication listIdentityProviders --help" }, { "lang": "go", @@ -37676,7 +37676,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "source": "atlas api federatedAuthentication createIdentityProvider --help" }, { "lang": "go", @@ -37753,7 +37753,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "source": "atlas api federatedAuthentication deleteIdentityProvider --help" }, { "lang": "go", @@ -37834,7 +37834,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "source": "atlas api federatedAuthentication getIdentityProvider --help" }, { "lang": "go", @@ -37923,7 +37923,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "source": "atlas api federatedAuthentication updateIdentityProvider --help" }, { "lang": "go", @@ -38000,7 +38000,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "source": "atlas api federatedAuthentication revokeJwksFromIdentityProvider --help" }, { "lang": "go", @@ -38070,7 +38070,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "source": "atlas api federatedAuthentication getIdentityProviderMetadata --help" }, { "lang": "go", @@ -38146,7 +38146,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "source": "atlas api projects listProjects --help" }, { "lang": "go", @@ -38242,7 +38242,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProject --help" + "source": "atlas api projects createProject --help" }, { "lang": "go", @@ -38326,7 +38326,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "source": "atlas api projects getProjectByName --help" }, { "lang": "go", @@ -38396,7 +38396,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "source": "atlas api projects deleteProject --help" }, { "lang": "go", @@ -38464,7 +38464,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProject --help" + "source": "atlas api projects getProject --help" }, { "lang": "go", @@ -38549,7 +38549,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "source": "atlas api projects updateProject --help" }, { "lang": "go", @@ -38635,7 +38635,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "source": "atlas api projects addUserToProject --help" }, { "lang": "go", @@ -38715,7 +38715,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "source": "atlas api projectIpAccessList listProjectIpAccessLists --help" }, { "lang": "go", @@ -38813,7 +38813,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "source": "atlas api projectIpAccessList createProjectIpAccessList --help" }, { "lang": "go", @@ -38898,7 +38898,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "source": "atlas api projectIpAccessList deleteProjectIpAccessList --help" }, { "lang": "go", @@ -38984,7 +38984,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "source": "atlas api projectIpAccessList getProjectIpList --help" }, { "lang": "go", @@ -39071,7 +39071,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "source": "atlas api projectIpAccessList getProjectIpAccessListStatus --help" }, { "lang": "go", @@ -39147,7 +39147,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "source": "atlas api alertConfigurations listAlertConfigurations --help" }, { "lang": "go", @@ -39226,7 +39226,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "source": "atlas api alertConfigurations createAlertConfiguration --help" }, { "lang": "go", @@ -39306,7 +39306,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "source": "atlas api alertConfigurations deleteAlertConfiguration --help" }, { "lang": "go", @@ -39387,7 +39387,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "source": "atlas api alertConfigurations getAlertConfiguration --help" }, { "lang": "go", @@ -39479,7 +39479,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "source": "atlas api alertConfigurations toggleAlertConfiguration --help" }, { "lang": "go", @@ -39574,7 +39574,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "source": "atlas api alertConfigurations updateAlertConfiguration --help" }, { "lang": "go", @@ -39666,7 +39666,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "source": "atlas api alerts listAlertsByAlertConfigurationId --help" }, { "lang": "go", @@ -39758,7 +39758,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "source": "atlas api alerts listAlerts --help" }, { "lang": "go", @@ -39840,7 +39840,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "source": "atlas api alerts getAlert --help" }, { "lang": "go", @@ -39934,7 +39934,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "source": "atlas api alerts acknowledgeAlert --help" }, { "lang": "go", @@ -40025,7 +40025,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "source": "atlas api alertConfigurations listAlertConfigurationsByAlertId --help" }, { "lang": "go", @@ -40105,7 +40105,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "source": "atlas api programmaticApiKeys listProjectApiKeys --help" }, { "lang": "go", @@ -40181,7 +40181,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "source": "atlas api programmaticApiKeys createProjectApiKey --help" }, { "lang": "go", @@ -40267,7 +40267,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "source": "atlas api programmaticApiKeys removeProjectApiKey --help" }, { "lang": "go", @@ -40367,7 +40367,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "source": "atlas api programmaticApiKeys updateApiKeyRoles --help" }, { "lang": "go", @@ -40458,7 +40458,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "source": "atlas api programmaticApiKeys addProjectApiKey --help" }, { "lang": "go", @@ -40525,7 +40525,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "source": "atlas api auditing getAuditingConfiguration --help" }, { "lang": "go", @@ -40604,7 +40604,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "source": "atlas api auditing updateAuditingConfiguration --help" }, { "lang": "go", @@ -40671,7 +40671,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "source": "atlas api awsClustersDns getAwscustomDns --help" }, { "lang": "go", @@ -40747,7 +40747,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "source": "atlas api awsClustersDns toggleAwscustomDns --help" }, { "lang": "go", @@ -40823,7 +40823,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "source": "atlas api cloudBackups listExportBuckets --help" }, { "lang": "go", @@ -40960,7 +40960,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "source": "atlas api cloudBackups createExportBucket --help" }, { "lang": "go", @@ -41043,7 +41043,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "source": "atlas api cloudBackups deleteExportBucket --help" }, { "lang": "go", @@ -41155,7 +41155,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "source": "atlas api cloudBackups getExportBucket --help" }, { "lang": "go", @@ -41225,7 +41225,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "source": "atlas api cloudBackups getDataProtectionSettings --help" }, { "lang": "go", @@ -41317,7 +41317,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "source": "atlas api cloudBackups updateDataProtectionSettings --help" }, { "lang": "go", @@ -41384,7 +41384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "source": "atlas api cloudProviderAccess listCloudProviderAccessRoles --help" }, { "lang": "go", @@ -41464,7 +41464,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess createCloudProviderAccessRole --help" }, { "lang": "go", @@ -41555,7 +41555,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -41634,7 +41634,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess getCloudProviderAccessRole --help" }, { "lang": "go", @@ -41732,7 +41732,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -41818,7 +41818,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "source": "atlas api clusters listClusters --help" }, { "lang": "go", @@ -41908,7 +41908,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "source": "atlas api clusters createCluster --help" }, { "lang": "go", @@ -42004,7 +42004,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "source": "atlas api clusters listCloudProviderRegions --help" }, { "lang": "go", @@ -42094,7 +42094,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "source": "atlas api clusters upgradeSharedCluster --help" }, { "lang": "go", @@ -42184,7 +42184,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "source": "atlas api clusters upgradeSharedClusterToServerless --help" }, { "lang": "go", @@ -42277,7 +42277,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "source": "atlas api clusters deleteCluster --help" }, { "lang": "go", @@ -42361,7 +42361,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "source": "atlas api clusters getCluster --help" }, { "lang": "go", @@ -42460,7 +42460,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "source": "atlas api clusters updateCluster --help" }, { "lang": "go", @@ -42549,7 +42549,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "source": "atlas api cloudBackups listBackupExportJobs --help" }, { "lang": "go", @@ -42643,7 +42643,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "source": "atlas api cloudBackups createBackupExportJob --help" }, { "lang": "go", @@ -42728,7 +42728,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "source": "atlas api cloudBackups getBackupExportJob --help" }, { "lang": "go", @@ -42816,7 +42816,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "source": "atlas api cloudBackups listBackupRestoreJobs --help" }, { "lang": "go", @@ -42913,7 +42913,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "source": "atlas api cloudBackups createBackupRestoreJob --help" }, { "lang": "go", @@ -43007,7 +43007,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "source": "atlas api cloudBackups cancelBackupRestoreJob --help" }, { "lang": "go", @@ -43096,7 +43096,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "source": "atlas api cloudBackups getBackupRestoreJob --help" }, { "lang": "go", @@ -43176,7 +43176,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "source": "atlas api cloudBackups deleteAllBackupSchedules --help" }, { "lang": "go", @@ -43255,7 +43255,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "source": "atlas api cloudBackups getBackupSchedule --help" }, { "lang": "go", @@ -43348,7 +43348,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "source": "atlas api cloudBackups updateBackupSchedule --help" }, { "lang": "go", @@ -43440,7 +43440,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "source": "atlas api cloudBackups listReplicaSetBackups --help" }, { "lang": "go", @@ -43531,7 +43531,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "source": "atlas api cloudBackups takeSnapshot --help" }, { "lang": "go", @@ -43622,7 +43622,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "source": "atlas api cloudBackups deleteShardedClusterBackup --help" }, { "lang": "go", @@ -43714,7 +43714,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "source": "atlas api cloudBackups getShardedClusterBackup --help" }, { "lang": "go", @@ -43796,7 +43796,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "source": "atlas api cloudBackups listShardedClusterBackups --help" }, { "lang": "go", @@ -43890,7 +43890,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "source": "atlas api cloudBackups deleteReplicaSetBackup --help" }, { "lang": "go", @@ -43982,7 +43982,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "source": "atlas api cloudBackups getReplicaSetBackup --help" }, { "lang": "go", @@ -44085,7 +44085,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "source": "atlas api cloudBackups updateSnapshotRetention --help" }, { "lang": "go", @@ -44187,7 +44187,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots downloadSharedClusterBackup --help" }, { "lang": "go", @@ -44286,7 +44286,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -44368,7 +44368,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "source": "atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help" }, { "lang": "go", @@ -44462,7 +44462,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -44544,7 +44544,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "source": "atlas api sharedTierSnapshots listSharedClusterBackups --help" }, { "lang": "go", @@ -44638,7 +44638,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots getSharedClusterBackup --help" }, { "lang": "go", @@ -44727,7 +44727,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "source": "atlas api legacyBackup listLegacyBackupCheckpoints --help" }, { "lang": "go", @@ -44825,7 +44825,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "source": "atlas api legacyBackup getLegacyBackupCheckpoint --help" }, { "lang": "go", @@ -44907,7 +44907,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "source": "atlas api collectionLevelMetrics getPinnedNamespaces --help" }, { "lang": "go", @@ -45009,7 +45009,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPatch --help" }, { "lang": "go", @@ -45111,7 +45111,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPut --help" }, { "lang": "go", @@ -45204,7 +45204,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "source": "atlas api collectionLevelMetrics unpinNamespaces --help" }, { "lang": "go", @@ -45305,7 +45305,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch createAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45411,7 +45411,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesDeprecated --help" }, { "lang": "go", @@ -45511,7 +45511,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45606,7 +45606,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch getAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45718,7 +45718,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45803,7 +45803,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "source": "atlas api globalClusters getManagedNamespace --help" }, { "lang": "go", @@ -45888,7 +45888,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "source": "atlas api globalClusters deleteAllCustomZoneMappings --help" }, { "lang": "go", @@ -45985,7 +45985,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "source": "atlas api globalClusters createCustomZoneMapping --help" }, { "lang": "go", @@ -46089,7 +46089,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "source": "atlas api globalClusters deleteManagedNamespace --help" }, { "lang": "go", @@ -46189,7 +46189,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "source": "atlas api globalClusters createManagedNamespace --help" }, { "lang": "go", @@ -46375,7 +46375,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "source": "atlas api rollingIndex createRollingIndex --help" }, { "lang": "go", @@ -46467,7 +46467,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "source": "atlas api onlineArchive listOnlineArchives --help" }, { "lang": "go", @@ -46568,7 +46568,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "source": "atlas api onlineArchive createOnlineArchive --help" }, { "lang": "go", @@ -46687,7 +46687,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "source": "atlas api onlineArchive downloadOnlineArchiveQueryLogs --help" }, { "lang": "go", @@ -46785,7 +46785,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "source": "atlas api onlineArchive deleteOnlineArchive --help" }, { "lang": "go", @@ -46884,7 +46884,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "source": "atlas api onlineArchive getOnlineArchive --help" }, { "lang": "go", @@ -46997,7 +46997,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "source": "atlas api onlineArchive updateOnlineArchive --help" }, { "lang": "go", @@ -47086,7 +47086,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "source": "atlas api clusterOutageSimulation endOutageSimulation --help" }, { "lang": "go", @@ -47173,7 +47173,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "source": "atlas api clusterOutageSimulation getOutageSimulation --help" }, { "lang": "go", @@ -47268,7 +47268,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "source": "atlas api clusterOutageSimulation startOutageSimulation --help" }, { "lang": "go", @@ -47355,7 +47355,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "source": "atlas api clusters getClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -47456,7 +47456,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "source": "atlas api clusters updateClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -47533,7 +47533,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "source": "atlas api clusters testFailover --help" }, { "lang": "go", @@ -47636,7 +47636,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "source": "atlas api legacyBackup listLegacyBackupRestoreJobs --help" }, { "lang": "go", @@ -47728,7 +47728,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup createLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -47823,7 +47823,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup getLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -47908,7 +47908,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "source": "atlas api atlasSearch deleteAtlasSearchDeployment --help" }, { "lang": "go", @@ -47988,7 +47988,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "source": "atlas api atlasSearch getAtlasSearchDeployment --help" }, { "lang": "go", @@ -48082,7 +48082,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "source": "atlas api atlasSearch updateAtlasSearchDeployment --help" }, { "lang": "go", @@ -48176,7 +48176,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "source": "atlas api atlasSearch createAtlasSearchDeployment --help" }, { "lang": "go", @@ -48275,7 +48275,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesCluster --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesCluster --help" }, { "lang": "go", @@ -48373,7 +48373,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndex --help" + "source": "atlas api atlasSearch createAtlasSearchIndex --help" }, { "lang": "go", @@ -48490,7 +48490,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexes --help" + "source": "atlas api atlasSearch listAtlasSearchIndexes --help" }, { "lang": "go", @@ -48603,7 +48603,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexByName --help" }, { "lang": "go", @@ -48714,7 +48714,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch getAtlasSearchIndexByName --help" }, { "lang": "go", @@ -48839,7 +48839,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexByName --help" }, { "lang": "go", @@ -48937,7 +48937,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndex --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndex --help" }, { "lang": "go", @@ -49043,7 +49043,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndex --help" + "source": "atlas api atlasSearch getAtlasSearchIndex --help" }, { "lang": "go", @@ -49153,7 +49153,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndex --help" + "source": "atlas api atlasSearch updateAtlasSearchIndex --help" }, { "lang": "go", @@ -49233,7 +49233,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup getLegacySnapshotSchedule --help" }, { "lang": "go", @@ -49322,7 +49322,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup updateLegacySnapshotSchedule --help" }, { "lang": "go", @@ -49425,7 +49425,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "source": "atlas api legacyBackup listLegacySnapshots --help" }, { "lang": "go", @@ -49520,7 +49520,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "source": "atlas api legacyBackup deleteLegacySnapshot --help" }, { "lang": "go", @@ -49610,7 +49610,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "source": "atlas api legacyBackup getLegacySnapshot --help" }, { "lang": "go", @@ -49711,7 +49711,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "source": "atlas api legacyBackup updateLegacySnapshotRetention --help" }, { "lang": "go", @@ -49790,7 +49790,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "source": "atlas api clusters getClusterStatus --help" }, { "lang": "go", @@ -49889,7 +49889,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "go", @@ -50041,7 +50041,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "go", @@ -50140,7 +50140,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinFeatureCompatibilityVersion --help" + "source": "atlas api clusters pinFeatureCompatibilityVersion --help" }, { "lang": "go", @@ -50231,7 +50231,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api unpinFeatureCompatibilityVersion --help" + "source": "atlas api clusters unpinFeatureCompatibilityVersion --help" }, { "lang": "go", @@ -50358,7 +50358,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "source": "atlas api monitoringAndLogs getHostLogs --help" }, { "lang": "go", @@ -50428,7 +50428,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "go", @@ -50522,7 +50522,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "source": "atlas api networkPeering listPeeringContainerByCloudProvider --help" }, { "lang": "go", @@ -50610,7 +50610,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "source": "atlas api networkPeering createPeeringContainer --help" }, { "lang": "go", @@ -50686,7 +50686,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "source": "atlas api networkPeering listPeeringContainers --help" }, { "lang": "go", @@ -50775,7 +50775,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "source": "atlas api networkPeering deletePeeringContainer --help" }, { "lang": "go", @@ -50853,7 +50853,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "source": "atlas api networkPeering getPeeringContainer --help" }, { "lang": "go", @@ -50954,7 +50954,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "source": "atlas api networkPeering updatePeeringContainer --help" }, { "lang": "go", @@ -51024,7 +51024,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "source": "atlas api customDatabaseRoles listCustomDatabaseRoles --help" }, { "lang": "go", @@ -51112,7 +51112,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles createCustomDatabaseRole --help" }, { "lang": "go", @@ -51194,7 +51194,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles deleteCustomDatabaseRole --help" }, { "lang": "go", @@ -51271,7 +51271,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles getCustomDatabaseRole --help" }, { "lang": "go", @@ -51368,7 +51368,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles updateCustomDatabaseRole --help" }, { "lang": "go", @@ -51451,7 +51451,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "source": "atlas api dataFederation listFederatedDatabases --help" }, { "lang": "go", @@ -51536,7 +51536,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "source": "atlas api dataFederation createFederatedDatabase --help" }, { "lang": "go", @@ -51612,7 +51612,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "source": "atlas api dataFederation deleteFederatedDatabase --help" }, { "lang": "go", @@ -51689,7 +51689,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "source": "atlas api dataFederation getFederatedDatabase --help" }, { "lang": "go", @@ -51786,7 +51786,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "source": "atlas api dataFederation updateFederatedDatabase --help" }, { "lang": "go", @@ -51868,7 +51868,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimits --help" }, { "lang": "go", @@ -51956,7 +51956,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "source": "atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "go", @@ -52045,7 +52045,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimit --help" }, { "lang": "go", @@ -52148,7 +52148,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "source": "atlas api dataFederation createOneDataFederationQueryLimit --help" }, { "lang": "go", @@ -52254,7 +52254,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "source": "atlas api dataFederation downloadFederatedDatabaseQueryLogs --help" }, { "lang": "go", @@ -52330,7 +52330,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "source": "atlas api databaseUsers listDatabaseUsers --help" }, { "lang": "go", @@ -52570,7 +52570,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "source": "atlas api databaseUsers createDatabaseUser --help" }, { "lang": "go", @@ -52662,7 +52662,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "source": "atlas api databaseUsers deleteDatabaseUser --help" }, { "lang": "go", @@ -52749,7 +52749,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "source": "atlas api databaseUsers getDatabaseUser --help" }, { "lang": "go", @@ -52856,7 +52856,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "source": "atlas api databaseUsers updateDatabaseUser --help" }, { "lang": "go", @@ -52944,7 +52944,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "source": "atlas api x509Authentication listDatabaseUserCertificates --help" }, { "lang": "go", @@ -53046,7 +53046,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "source": "atlas api x509Authentication createDatabaseUserCertificate --help" }, { "lang": "go", @@ -53179,7 +53179,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "source": "atlas api accessTracking listAccessLogsByClusterName --help" }, { "lang": "go", @@ -53309,7 +53309,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "source": "atlas api accessTracking listAccessLogsByHostname --help" }, { "lang": "go", @@ -53376,7 +53376,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help" }, { "lang": "go", @@ -53461,7 +53461,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help" }, { "lang": "go", @@ -53540,7 +53540,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "go", @@ -53628,7 +53628,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -53730,7 +53730,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "go", @@ -53819,7 +53819,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -53962,7 +53962,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "source": "atlas api events listProjectEvents --help" }, { "lang": "go", @@ -54053,7 +54053,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "source": "atlas api events getProjectEvent --help" }, { "lang": "go", @@ -54123,7 +54123,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "source": "atlas api monitoringAndLogs listMetricTypes --help" }, { "lang": "go", @@ -54239,7 +54239,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "source": "atlas api monitoringAndLogs listIndexMetrics --help" }, { "lang": "go", @@ -54358,7 +54358,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "source": "atlas api monitoringAndLogs getIndexMetrics --help" }, { "lang": "go", @@ -54469,7 +54469,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "source": "atlas api monitoringAndLogs getMeasurements --help" }, { "lang": "go", @@ -54551,7 +54551,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "source": "atlas api thirdPartyIntegrations listThirdPartyIntegrations --help" }, { "lang": "go", @@ -54646,7 +54646,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help" }, { "lang": "go", @@ -54739,7 +54739,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations getThirdPartyIntegration --help" }, { "lang": "go", @@ -54855,7 +54855,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations createThirdPartyIntegration --help" }, { "lang": "go", @@ -54968,7 +54968,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations updateThirdPartyIntegration --help" }, { "lang": "go", @@ -55048,7 +55048,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "source": "atlas api projects listProjectInvitations --help" }, { "lang": "go", @@ -55132,7 +55132,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "source": "atlas api projects updateProjectInvitation --help" }, { "lang": "go", @@ -55210,7 +55210,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "source": "atlas api projects createProjectInvitation --help" }, { "lang": "go", @@ -55288,7 +55288,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "source": "atlas api projects deleteProjectInvitation --help" }, { "lang": "go", @@ -55370,7 +55370,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "source": "atlas api projects getProjectInvitation --help" }, { "lang": "go", @@ -55463,7 +55463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "source": "atlas api projects updateProjectInvitationById --help" }, { "lang": "go", @@ -55534,7 +55534,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "source": "atlas api projects returnAllIpaddresses --help" }, { "lang": "go", @@ -55613,7 +55613,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "source": "atlas api projects listProjectLimits --help" }, { "lang": "go", @@ -55710,7 +55710,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "source": "atlas api projects deleteProjectLimit --help" }, { "lang": "go", @@ -55808,7 +55808,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "source": "atlas api projects getProjectLimit --help" }, { "lang": "go", @@ -55917,7 +55917,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "source": "atlas api projects setProjectLimit --help" }, { "lang": "go", @@ -56005,7 +56005,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "source": "atlas api cloudMigrationService createPushMigration --help" }, { "lang": "go", @@ -56093,7 +56093,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "source": "atlas api cloudMigrationService validateMigration --help" }, { "lang": "go", @@ -56179,7 +56179,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "source": "atlas api cloudMigrationService getValidationStatus --help" }, { "lang": "go", @@ -56255,7 +56255,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "source": "atlas api cloudMigrationService getPushMigration --help" }, { "lang": "go", @@ -56331,7 +56331,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "source": "atlas api cloudMigrationService cutoverMigration --help" }, { "lang": "go", @@ -56395,7 +56395,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "source": "atlas api maintenanceWindows resetMaintenanceWindow --help" }, { "lang": "go", @@ -56460,7 +56460,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "source": "atlas api maintenanceWindows getMaintenanceWindow --help" }, { "lang": "go", @@ -56536,7 +56536,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "source": "atlas api maintenanceWindows updateMaintenanceWindow --help" }, { "lang": "go", @@ -56600,7 +56600,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "source": "atlas api maintenanceWindows toggleMaintenanceAutoDefer --help" }, { "lang": "go", @@ -56664,7 +56664,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "source": "atlas api maintenanceWindows deferMaintenanceWindow --help" }, { "lang": "go", @@ -56731,7 +56731,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "source": "atlas api performanceAdvisor getManagedSlowMs --help" }, { "lang": "go", @@ -56798,7 +56798,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor disableSlowOperationThresholding --help" }, { "lang": "go", @@ -56865,7 +56865,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor enableSlowOperationThresholding --help" }, { "lang": "go", @@ -56993,7 +56993,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "source": "atlas api projects getProjectLtsversions --help" }, { "lang": "go", @@ -57086,7 +57086,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "source": "atlas api networkPeering listPeeringConnections --help" }, { "lang": "go", @@ -57175,7 +57175,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "source": "atlas api networkPeering createPeeringConnection --help" }, { "lang": "go", @@ -57257,7 +57257,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "source": "atlas api networkPeering deletePeeringConnection --help" }, { "lang": "go", @@ -57337,7 +57337,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "source": "atlas api networkPeering getPeeringConnection --help" }, { "lang": "go", @@ -57434,7 +57434,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "source": "atlas api networkPeering updatePeeringConnection --help" }, { "lang": "go", @@ -57504,7 +57504,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "source": "atlas api dataLakePipelines listPipelines --help" }, { "lang": "go", @@ -57583,7 +57583,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "source": "atlas api dataLakePipelines createPipeline --help" }, { "lang": "go", @@ -57662,7 +57662,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "source": "atlas api dataLakePipelines deletePipeline --help" }, { "lang": "go", @@ -57742,7 +57742,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "source": "atlas api dataLakePipelines getPipeline --help" }, { "lang": "go", @@ -57836,7 +57836,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "source": "atlas api dataLakePipelines updatePipeline --help" }, { "lang": "go", @@ -57921,7 +57921,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "source": "atlas api dataLakePipelines listPipelineSchedules --help" }, { "lang": "go", @@ -58022,7 +58022,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "source": "atlas api dataLakePipelines listPipelineSnapshots --help" }, { "lang": "go", @@ -58104,7 +58104,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "source": "atlas api dataLakePipelines pausePipeline --help" }, { "lang": "go", @@ -58186,7 +58186,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "source": "atlas api dataLakePipelines resumePipeline --help" }, { "lang": "go", @@ -58287,7 +58287,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "source": "atlas api dataLakePipelines listPipelineRuns --help" }, { "lang": "go", @@ -58382,7 +58382,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "source": "atlas api dataLakePipelines deletePipelineRunDataset --help" }, { "lang": "go", @@ -58475,7 +58475,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "source": "atlas api dataLakePipelines getPipelineRun --help" }, { "lang": "go", @@ -58568,7 +58568,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "source": "atlas api dataLakePipelines triggerSnapshotIngestion --help" }, { "lang": "go", @@ -58650,7 +58650,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "source": "atlas api privateEndpointServices createPrivateEndpointService --help" }, { "lang": "go", @@ -58720,7 +58720,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -58799,7 +58799,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -58880,7 +58880,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "source": "atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help" }, { "lang": "go", @@ -58971,7 +58971,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59061,7 +59061,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59149,7 +59149,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59248,7 +59248,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59333,7 +59333,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "source": "atlas api privateEndpointServices listPrivateEndpointServices --help" }, { "lang": "go", @@ -59427,7 +59427,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "source": "atlas api privateEndpointServices deletePrivateEndpointService --help" }, { "lang": "go", @@ -59522,7 +59522,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "source": "atlas api privateEndpointServices getPrivateEndpointService --help" }, { "lang": "go", @@ -59636,7 +59636,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "source": "atlas api privateEndpointServices createPrivateEndpoint --help" }, { "lang": "go", @@ -59740,7 +59740,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "source": "atlas api privateEndpointServices deletePrivateEndpoint --help" }, { "lang": "go", @@ -59845,7 +59845,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "source": "atlas api privateEndpointServices getPrivateEndpoint --help" }, { "lang": "go", @@ -59917,7 +59917,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "source": "atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "go", @@ -60001,7 +60001,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "source": "atlas api networkPeering disablePeering --help" }, { "lang": "go", @@ -60083,7 +60083,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "source": "atlas api dataFederation listDataFederationPrivateEndpoints --help" }, { "lang": "go", @@ -60162,7 +60162,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation createDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -60244,7 +60244,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation deleteDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -60327,7 +60327,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation getDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -60403,7 +60403,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "source": "atlas api monitoringAndLogs listAtlasProcesses --help" }, { "lang": "go", @@ -60481,7 +60481,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "source": "atlas api monitoringAndLogs getAtlasProcess --help" }, { "lang": "go", @@ -60557,7 +60557,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help" }, { "lang": "go", @@ -60644,7 +60644,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "source": "atlas api monitoringAndLogs listDatabases --help" }, { "lang": "go", @@ -60731,7 +60731,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "source": "atlas api monitoringAndLogs getDatabase --help" }, { "lang": "go", @@ -60857,7 +60857,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "source": "atlas api monitoringAndLogs getDatabaseMeasurements --help" }, { "lang": "go", @@ -60944,7 +60944,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "source": "atlas api monitoringAndLogs listDiskPartitions --help" }, { "lang": "go", @@ -61028,7 +61028,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "source": "atlas api monitoringAndLogs listDiskMeasurements --help" }, { "lang": "go", @@ -61163,7 +61163,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "source": "atlas api monitoringAndLogs getDiskMeasurements --help" }, { "lang": "go", @@ -61405,7 +61405,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "source": "atlas api monitoringAndLogs getHostMeasurements --help" }, { "lang": "go", @@ -61501,7 +61501,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "source": "atlas api performanceAdvisor listSlowQueryNamespaces --help" }, { "lang": "go", @@ -61621,7 +61621,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "source": "atlas api performanceAdvisor listSlowQueries --help" }, { "lang": "go", @@ -61757,7 +61757,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "source": "atlas api performanceAdvisor listSuggestedIndexes --help" }, { "lang": "go", @@ -61884,7 +61884,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "go", @@ -61957,7 +61957,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport deletePushBasedLogConfiguration --help" }, { "lang": "go", @@ -62028,7 +62028,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport getPushBasedLogConfiguration --help" }, { "lang": "go", @@ -62111,7 +62111,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport updatePushBasedLogConfiguration --help" }, { "lang": "go", @@ -62194,7 +62194,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport createPushBasedLogConfiguration --help" }, { "lang": "go", @@ -62276,7 +62276,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "source": "atlas api clusters loadSampleDataset --help" }, { "lang": "go", @@ -62352,7 +62352,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "source": "atlas api clusters getSampleDatasetLoadStatus --help" }, { "lang": "go", @@ -62428,7 +62428,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "source": "atlas api serverlessInstances listServerlessInstances --help" }, { "lang": "go", @@ -62510,7 +62510,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "source": "atlas api serverlessInstances createServerlessInstance --help" }, { "lang": "go", @@ -62601,7 +62601,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "source": "atlas api cloudBackups listServerlessBackupRestoreJobs --help" }, { "lang": "go", @@ -62698,7 +62698,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups createServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -62792,7 +62792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups getServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -62883,7 +62883,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "source": "atlas api cloudBackups listServerlessBackups --help" }, { "lang": "go", @@ -62975,7 +62975,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "source": "atlas api cloudBackups getServerlessBackup --help" }, { "lang": "go", @@ -63054,7 +63054,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor getServerlessAutoIndexing --help" }, { "lang": "go", @@ -63137,7 +63137,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor setServerlessAutoIndexing --help" }, { "lang": "go", @@ -63222,7 +63222,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "source": "atlas api serverlessInstances deleteServerlessInstance --help" }, { "lang": "go", @@ -63305,7 +63305,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "source": "atlas api serverlessInstances getServerlessInstance --help" }, { "lang": "go", @@ -63396,7 +63396,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "source": "atlas api serverlessInstances updateServerlessInstance --help" }, { "lang": "go", @@ -63472,7 +63472,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "source": "atlas api groups listProjectServiceAccounts --help" }, { "lang": "go", @@ -63552,7 +63552,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "source": "atlas api groups createProjectServiceAccount --help" }, { "lang": "go", @@ -63632,7 +63632,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "source": "atlas api groups deleteProjectServiceAccount --help" }, { "lang": "go", @@ -63709,7 +63709,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "source": "atlas api groups getProjectServiceAccount --help" }, { "lang": "go", @@ -63800,7 +63800,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "source": "atlas api groups updateProjectServiceAccount --help" }, { "lang": "go", @@ -63893,7 +63893,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "source": "atlas api groups addProjectServiceAccount --help" }, { "lang": "go", @@ -63966,7 +63966,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "source": "atlas api projects getProjectSettings --help" }, { "lang": "go", @@ -64048,7 +64048,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "source": "atlas api projects updateProjectSettings --help" }, { "lang": "go", @@ -64121,7 +64121,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "source": "atlas api streams listStreamInstances --help" }, { "lang": "go", @@ -64200,7 +64200,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "source": "atlas api streams createStreamInstance --help" }, { "lang": "go", @@ -64282,7 +64282,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "source": "atlas api streams deleteStreamInstance --help" }, { "lang": "go", @@ -64367,7 +64367,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "source": "atlas api streams getStreamInstance --help" }, { "lang": "go", @@ -64461,7 +64461,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "source": "atlas api streams updateStreamInstance --help" }, { "lang": "go", @@ -64570,7 +64570,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "source": "atlas api streams downloadStreamTenantAuditLogs --help" }, { "lang": "go", @@ -64655,7 +64655,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "source": "atlas api streams listStreamConnections --help" }, { "lang": "go", @@ -64746,7 +64746,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "source": "atlas api streams createStreamConnection --help" }, { "lang": "go", @@ -64837,7 +64837,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "source": "atlas api streams deleteStreamConnection --help" }, { "lang": "go", @@ -64920,7 +64920,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "source": "atlas api streams getStreamConnection --help" }, { "lang": "go", @@ -65023,7 +65023,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "source": "atlas api streams updateStreamConnection --help" }, { "lang": "go", @@ -65116,7 +65116,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamProcessor --help" + "source": "atlas api streams createStreamProcessor --help" }, { "lang": "go", @@ -65204,7 +65204,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamProcessor --help" + "source": "atlas api streams deleteStreamProcessor --help" }, { "lang": "go", @@ -65293,7 +65293,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamProcessor --help" + "source": "atlas api streams getStreamProcessor --help" }, { "lang": "go", @@ -65384,7 +65384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startStreamProcessor --help" + "source": "atlas api streams startStreamProcessor --help" }, { "lang": "go", @@ -65475,7 +65475,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api stopStreamProcessor --help" + "source": "atlas api streams stopStreamProcessor --help" }, { "lang": "go", @@ -65566,7 +65566,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamProcessors --help" + "source": "atlas api streams listStreamProcessors --help" }, { "lang": "go", @@ -65651,7 +65651,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "source": "atlas api teams listProjectTeams --help" }, { "lang": "go", @@ -65743,7 +65743,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "source": "atlas api teams addAllTeamsToProject --help" }, { "lang": "go", @@ -65829,7 +65829,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "source": "atlas api teams removeProjectTeam --help" }, { "lang": "go", @@ -65930,7 +65930,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "source": "atlas api teams updateTeamRoles --help" }, { "lang": "go", @@ -65997,7 +65997,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "source": "atlas api ldapConfiguration getLdapconfiguration --help" }, { "lang": "go", @@ -66076,7 +66076,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "source": "atlas api ldapConfiguration saveLdapconfiguration --help" }, { "lang": "go", @@ -66140,7 +66140,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "source": "atlas api x509Authentication disableCustomerManagedX509 --help" }, { "lang": "go", @@ -66207,7 +66207,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "source": "atlas api ldapConfiguration deleteLdapconfiguration --help" }, { "lang": "go", @@ -66288,7 +66288,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "source": "atlas api ldapConfiguration verifyLdapconfiguration --help" }, { "lang": "go", @@ -66367,7 +66367,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "source": "atlas api ldapConfiguration getLdapconfigurationStatus --help" }, { "lang": "go", @@ -66461,7 +66461,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "source": "atlas api projects listProjectUsers --help" }, { "lang": "go", @@ -66543,7 +66543,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "source": "atlas api projects removeProjectUser --help" }, { "lang": "go", @@ -66639,7 +66639,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "source": "atlas api projects updateProjectRoles --help" }, { "lang": "go", @@ -66714,7 +66714,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api migrateProjectToAnotherOrg --help" + "source": "atlas api projects migrateProjectToAnotherOrg --help" }, { "lang": "go", @@ -66804,7 +66804,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "source": "atlas api organizations listOrganizations --help" }, { "lang": "go", @@ -66889,7 +66889,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "source": "atlas api organizations createOrganization --help" }, { "lang": "go", @@ -66965,7 +66965,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "source": "atlas api organizations deleteOrganization --help" }, { "lang": "go", @@ -67039,7 +67039,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "source": "atlas api organizations getOrganization --help" }, { "lang": "go", @@ -67124,7 +67124,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "source": "atlas api organizations renameOrganization --help" }, { "lang": "go", @@ -67204,7 +67204,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "source": "atlas api programmaticApiKeys listApiKeys --help" }, { "lang": "go", @@ -67284,7 +67284,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "source": "atlas api programmaticApiKeys createApiKey --help" }, { "lang": "go", @@ -67367,7 +67367,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "source": "atlas api programmaticApiKeys deleteApiKey --help" }, { "lang": "go", @@ -67448,7 +67448,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "source": "atlas api programmaticApiKeys getApiKey --help" }, { "lang": "go", @@ -67543,7 +67543,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "source": "atlas api programmaticApiKeys updateApiKey --help" }, { "lang": "go", @@ -67635,7 +67635,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "source": "atlas api programmaticApiKeys listApiKeyAccessListsEntries --help" }, { "lang": "go", @@ -67741,7 +67741,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys createApiKeyAccessList --help" }, { "lang": "go", @@ -67841,7 +67841,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "source": "atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help" }, { "lang": "go", @@ -67936,7 +67936,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys getApiKeyAccessList --help" }, { "lang": "go", @@ -68014,7 +68014,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "source": "atlas api invoices createCostExplorerQueryProcess --help" }, { "lang": "go", @@ -68105,7 +68105,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "source": "atlas api invoices createCostExplorerQueryProcess1 --help" }, { "lang": "go", @@ -68220,7 +68220,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "source": "atlas api events listOrganizationEvents --help" }, { "lang": "go", @@ -68311,7 +68311,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "source": "atlas api events getOrganizationEvent --help" }, { "lang": "go", @@ -68384,7 +68384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "source": "atlas api federatedAuthentication getFederationSettings --help" }, { "lang": "go", @@ -68474,7 +68474,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "source": "atlas api organizations listOrganizationProjects --help" }, { "lang": "go", @@ -68559,7 +68559,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "source": "atlas api organizations listOrganizationInvitations --help" }, { "lang": "go", @@ -68641,7 +68641,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "source": "atlas api organizations updateOrganizationInvitation --help" }, { "lang": "go", @@ -68723,7 +68723,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "source": "atlas api organizations createOrganizationInvitation --help" }, { "lang": "go", @@ -68805,7 +68805,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "source": "atlas api organizations deleteOrganizationInvitation --help" }, { "lang": "go", @@ -68885,7 +68885,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "source": "atlas api organizations getOrganizationInvitation --help" }, { "lang": "go", @@ -68979,7 +68979,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "source": "atlas api organizations updateOrganizationInvitationById --help" }, { "lang": "go", @@ -69137,7 +69137,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "source": "atlas api invoices listInvoices --help" }, { "lang": "go", @@ -69207,7 +69207,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "source": "atlas api invoices listPendingInvoices --help" }, { "lang": "go", @@ -69295,7 +69295,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "source": "atlas api invoices getInvoice --help" }, { "lang": "go", @@ -69376,7 +69376,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "source": "atlas api invoices downloadInvoiceCsv --help" }, { "lang": "go", @@ -69449,7 +69449,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "source": "atlas api cloudMigrationService listSourceProjects --help" }, { "lang": "go", @@ -69516,7 +69516,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "source": "atlas api cloudMigrationService deleteLinkToken --help" }, { "lang": "go", @@ -69595,7 +69595,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "source": "atlas api cloudMigrationService createLinkToken --help" }, { "lang": "go", @@ -69671,7 +69671,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "source": "atlas api organizations listServiceAccounts --help" }, { "lang": "go", @@ -69750,7 +69750,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "source": "atlas api organizations createServiceAccount --help" }, { "lang": "go", @@ -69826,7 +69826,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "source": "atlas api organizations deleteServiceAccount --help" }, { "lang": "go", @@ -69903,7 +69903,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "source": "atlas api organizations getServiceAccount --help" }, { "lang": "go", @@ -69994,7 +69994,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "source": "atlas api organizations updateServiceAccount --help" }, { "lang": "go", @@ -70079,7 +70079,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "source": "atlas api organizations listServiceAccountProjects --help" }, { "lang": "go", @@ -70169,7 +70169,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "source": "atlas api organizations createServiceAccountSecret --help" }, { "lang": "go", @@ -70254,7 +70254,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "source": "atlas api organizations deleteServiceAccountSecret --help" }, { "lang": "go", @@ -70327,7 +70327,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "source": "atlas api organizations getOrganizationSettings --help" }, { "lang": "go", @@ -70409,7 +70409,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "source": "atlas api organizations updateOrganizationSettings --help" }, { "lang": "go", @@ -70495,7 +70495,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "source": "atlas api teams listOrganizationTeams --help" }, { "lang": "go", @@ -70584,7 +70584,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "source": "atlas api teams createTeam --help" }, { "lang": "go", @@ -70670,7 +70670,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "source": "atlas api teams getTeamByName --help" }, { "lang": "go", @@ -70759,7 +70759,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "source": "atlas api teams deleteTeam --help" }, { "lang": "go", @@ -70846,7 +70846,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "source": "atlas api teams getTeamById --help" }, { "lang": "go", @@ -70947,7 +70947,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "source": "atlas api teams renameTeam --help" }, { "lang": "go", @@ -71045,7 +71045,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "source": "atlas api teams listTeamUsers --help" }, { "lang": "go", @@ -71149,7 +71149,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "source": "atlas api teams addTeamUser --help" }, { "lang": "go", @@ -71247,7 +71247,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "source": "atlas api teams removeTeamUser --help" }, { "lang": "go", @@ -71329,7 +71329,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "source": "atlas api organizations listOrganizationUsers --help" }, { "lang": "go", @@ -71414,7 +71414,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "source": "atlas api organizations removeOrganizationUser --help" }, { "lang": "go", @@ -71510,7 +71510,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "source": "atlas api organizations updateOrganizationRoles --help" }, { "lang": "go", @@ -71563,7 +71563,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "source": "atlas api root returnAllControlPlaneIpaddresses --help" }, { "lang": "go", @@ -71641,7 +71641,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUser --help" + "source": "atlas api mongoDbCloudUsers createUser --help" }, { "lang": "go", @@ -71718,7 +71718,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "source": "atlas api mongoDbCloudUsers getUserByUsername --help" }, { "lang": "go", @@ -71797,7 +71797,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUser --help" + "source": "atlas api mongoDbCloudUsers getUser --help" }, { "lang": "go", 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 c727538870..e260973e9f 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 @@ -29868,7 +29868,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSystemStatus --help + source: atlas api root getSystemStatus --help - label: Go lang: go source: | @@ -29938,7 +29938,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help + source: atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help - label: Go lang: go source: | @@ -30009,7 +30009,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClustersForAllProjects --help + source: atlas api clusters listClustersForAllProjects --help - label: Go lang: go source: | @@ -30080,7 +30080,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listEventTypes --help + source: atlas api events listEventTypes --help - label: Go lang: go source: | @@ -30149,7 +30149,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederationApp --help + source: atlas api federatedAuthentication deleteFederationApp --help - label: Go lang: go source: | @@ -30223,7 +30223,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listConnectedOrgConfigs --help + source: atlas api federatedAuthentication listConnectedOrgConfigs --help - label: Go lang: go source: | @@ -30305,7 +30305,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeConnectedOrgConfig --help + source: atlas api federatedAuthentication removeConnectedOrgConfig --help - label: Go lang: go source: | @@ -30386,7 +30386,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getConnectedOrgConfig --help + source: atlas api federatedAuthentication getConnectedOrgConfig --help - label: Go lang: go source: | @@ -30474,7 +30474,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateConnectedOrgConfig --help + source: atlas api federatedAuthentication updateConnectedOrgConfig --help - label: Go lang: go source: | @@ -30551,7 +30551,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listRoleMappings --help + source: atlas api federatedAuthentication listRoleMappings --help - label: Go lang: go source: | @@ -30630,7 +30630,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRoleMapping --help + source: atlas api federatedAuthentication createRoleMapping --help - label: Go lang: go source: | @@ -30715,7 +30715,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteRoleMapping --help + source: atlas api federatedAuthentication deleteRoleMapping --help - label: Go lang: go source: | @@ -30797,7 +30797,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRoleMapping --help + source: atlas api federatedAuthentication getRoleMapping --help - label: Go lang: go source: | @@ -30886,7 +30886,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateRoleMapping --help + source: atlas api federatedAuthentication updateRoleMapping --help - label: Go lang: go source: | @@ -30986,7 +30986,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIdentityProviders --help + source: atlas api federatedAuthentication listIdentityProviders --help - label: Go lang: go source: | @@ -31069,7 +31069,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createIdentityProvider --help + source: atlas api federatedAuthentication createIdentityProvider --help - label: Go lang: go source: | @@ -31150,7 +31150,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteIdentityProvider --help + source: atlas api federatedAuthentication deleteIdentityProvider --help - label: Go lang: go source: | @@ -31230,7 +31230,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProvider --help + source: atlas api federatedAuthentication getIdentityProvider --help - label: Go lang: go source: | @@ -31318,7 +31318,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateIdentityProvider --help + source: atlas api federatedAuthentication updateIdentityProvider --help - label: Go lang: go source: | @@ -31399,7 +31399,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help + source: atlas api federatedAuthentication revokeJwksFromIdentityProvider --help - label: Go lang: go source: | @@ -31471,7 +31471,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProviderMetadata --help + source: atlas api federatedAuthentication getIdentityProviderMetadata --help - label: Go lang: go source: | @@ -31544,7 +31544,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjects --help + source: atlas api projects listProjects --help - label: Go lang: go source: | @@ -31634,7 +31634,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProject --help + source: atlas api projects createProject --help - label: Go lang: go source: | @@ -31709,7 +31709,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProject --help + source: atlas api projects deleteProject --help - label: Go lang: go source: | @@ -31779,7 +31779,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProject --help + source: atlas api projects getProject --help - label: Go lang: go source: | @@ -31860,7 +31860,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProject --help + source: atlas api projects updateProject --help - label: Go lang: go source: | @@ -31945,7 +31945,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToProject --help + source: atlas api projects addUserToProject --help - label: Go lang: go source: | @@ -32024,7 +32024,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectIpAccessLists --help + source: atlas api projectIpAccessList listProjectIpAccessLists --help - label: Go lang: go source: | @@ -32111,7 +32111,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectIpAccessList --help + source: atlas api projectIpAccessList createProjectIpAccessList --help - label: Go lang: go source: | @@ -32202,7 +32202,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectIpAccessList --help + source: atlas api projectIpAccessList deleteProjectIpAccessList --help - label: Go lang: go source: | @@ -32285,7 +32285,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpList --help + source: atlas api projectIpAccessList getProjectIpList --help - label: Go lang: go source: | @@ -32368,7 +32368,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpAccessListStatus --help + source: atlas api projectIpAccessList getProjectIpAccessListStatus --help - label: Go lang: go source: | @@ -32443,7 +32443,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurations --help + source: atlas api alertConfigurations listAlertConfigurations --help - label: Go lang: go source: | @@ -32523,7 +32523,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAlertConfiguration --help + source: atlas api alertConfigurations createAlertConfiguration --help - label: Go lang: go source: | @@ -32609,7 +32609,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAlertConfiguration --help + source: atlas api alertConfigurations deleteAlertConfiguration --help - label: Go lang: go source: | @@ -32692,7 +32692,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlertConfiguration --help + source: atlas api alertConfigurations getAlertConfiguration --help - label: Go lang: go source: | @@ -32784,7 +32784,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAlertConfiguration --help + source: atlas api alertConfigurations toggleAlertConfiguration --help - label: Go lang: go source: | @@ -32882,7 +32882,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAlertConfiguration --help + source: atlas api alertConfigurations updateAlertConfiguration --help - label: Go lang: go source: | @@ -32973,7 +32973,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertsByAlertConfigurationId --help + source: atlas api alerts listAlertsByAlertConfigurationId --help - label: Go lang: go source: | @@ -33059,7 +33059,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlerts --help + source: atlas api alerts listAlerts --help - label: Go lang: go source: | @@ -33142,7 +33142,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlert --help + source: atlas api alerts getAlert --help - label: Go lang: go source: | @@ -33233,7 +33233,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acknowledgeAlert --help + source: atlas api alerts acknowledgeAlert --help - label: Go lang: go source: | @@ -33323,7 +33323,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationsByAlertId --help + source: atlas api alertConfigurations listAlertConfigurationsByAlertId --help - label: Go lang: go source: | @@ -33398,7 +33398,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectApiKeys --help + source: atlas api programmaticApiKeys listProjectApiKeys --help - label: Go lang: go source: | @@ -33473,7 +33473,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectApiKey --help + source: atlas api programmaticApiKeys createProjectApiKey --help - label: Go lang: go source: | @@ -33560,7 +33560,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectApiKey --help + source: atlas api programmaticApiKeys removeProjectApiKey --help - label: Go lang: go source: | @@ -33649,7 +33649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKeyRoles --help + source: atlas api programmaticApiKeys updateApiKeyRoles --help - label: Go lang: go source: | @@ -33739,7 +33739,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectApiKey --help + source: atlas api programmaticApiKeys addProjectApiKey --help - label: Go lang: go source: | @@ -33812,7 +33812,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAuditingConfiguration --help + source: atlas api auditing getAuditingConfiguration --help - label: Go lang: go source: | @@ -33889,7 +33889,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAuditingConfiguration --help + source: atlas api auditing updateAuditingConfiguration --help - label: Go lang: go source: | @@ -33962,7 +33962,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAWSCustomDNS --help + source: atlas api awsClustersDns getAwscustomDns --help - label: Go lang: go source: | @@ -34037,7 +34037,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAWSCustomDNS --help + source: atlas api awsClustersDns toggleAwscustomDns --help - label: Go lang: go source: | @@ -34113,7 +34113,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listExportBuckets --help + source: atlas api cloudBackups listExportBuckets --help - label: Go lang: go source: | @@ -34231,7 +34231,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createExportBucket --help + source: atlas api cloudBackups createExportBucket --help - label: Go lang: go source: | @@ -34317,7 +34317,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteExportBucket --help + source: atlas api cloudBackups deleteExportBucket --help - label: Go lang: go source: | @@ -34419,7 +34419,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getExportBucket --help + source: atlas api cloudBackups getExportBucket --help - label: Go lang: go source: | @@ -34490,7 +34490,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataProtectionSettings --help + source: atlas api cloudBackups getDataProtectionSettings --help - label: Go lang: go source: | @@ -34576,7 +34576,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDataProtectionSettings --help + source: atlas api cloudBackups updateDataProtectionSettings --help - label: Go lang: go source: | @@ -34649,7 +34649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderAccessRoles --help + source: atlas api cloudProviderAccess listCloudProviderAccessRoles --help - label: Go lang: go source: | @@ -34727,7 +34727,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCloudProviderAccessRole --help + source: atlas api cloudProviderAccess createCloudProviderAccessRole --help - label: Go lang: go source: | @@ -34817,7 +34817,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -34895,7 +34895,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCloudProviderAccessRole --help + source: atlas api cloudProviderAccess getCloudProviderAccessRole --help - label: Go lang: go source: | @@ -34986,7 +34986,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35069,7 +35069,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusters --help + source: atlas api clusters listClusters --help - label: Go lang: go source: | @@ -35154,7 +35154,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCluster --help + source: atlas api clusters createCluster --help - label: Go lang: go source: | @@ -35246,7 +35246,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCluster --help + source: atlas api clusters deleteCluster --help - label: Go lang: go source: | @@ -35328,7 +35328,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCluster --help + source: atlas api clusters getCluster --help - label: Go lang: go source: | @@ -35420,7 +35420,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCluster --help + source: atlas api clusters updateCluster --help - label: Go lang: go source: | @@ -35557,7 +35557,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help - label: Go lang: go source: | @@ -35647,7 +35647,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForCluster --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help - label: Go lang: go source: | @@ -35728,7 +35728,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupExportJobs --help + source: atlas api cloudBackups listBackupExportJobs --help - label: Go lang: go source: | @@ -35817,7 +35817,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupExportJob --help + source: atlas api cloudBackups createBackupExportJob --help - label: Go lang: go source: | @@ -35904,7 +35904,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupExportJob --help + source: atlas api cloudBackups getBackupExportJob --help - label: Go lang: go source: | @@ -35985,7 +35985,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupRestoreJobs --help + source: atlas api cloudBackups listBackupRestoreJobs --help - label: Go lang: go source: | @@ -36078,7 +36078,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupRestoreJob --help + source: atlas api cloudBackups createBackupRestoreJob --help - label: Go lang: go source: | @@ -36171,7 +36171,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cancelBackupRestoreJob --help + source: atlas api cloudBackups cancelBackupRestoreJob --help - label: Go lang: go source: | @@ -36257,7 +36257,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupRestoreJob --help + source: atlas api cloudBackups getBackupRestoreJob --help - label: Go lang: go source: | @@ -36337,7 +36337,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllBackupSchedules --help + source: atlas api cloudBackups deleteAllBackupSchedules --help - label: Go lang: go source: | @@ -36416,7 +36416,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupSchedule --help + source: atlas api cloudBackups getBackupSchedule --help - label: Go lang: go source: | @@ -36507,7 +36507,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateBackupSchedule --help + source: atlas api cloudBackups updateBackupSchedule --help - label: Go lang: go source: | @@ -36595,7 +36595,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listReplicaSetBackups --help + source: atlas api cloudBackups listReplicaSetBackups --help - label: Go lang: go source: | @@ -36684,7 +36684,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api takeSnapshot --help + source: atlas api cloudBackups takeSnapshot --help - label: Go lang: go source: | @@ -36777,7 +36777,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteReplicaSetBackup --help + source: atlas api cloudBackups deleteReplicaSetBackup --help - label: Go lang: go source: | @@ -36865,7 +36865,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getReplicaSetBackup --help + source: atlas api cloudBackups getReplicaSetBackup --help - label: Go lang: go source: | @@ -36960,7 +36960,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateSnapshotRetention --help + source: atlas api cloudBackups updateSnapshotRetention --help - label: Go lang: go source: | @@ -37051,7 +37051,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteShardedClusterBackup --help + source: atlas api cloudBackups deleteShardedClusterBackup --help - label: Go lang: go source: | @@ -37139,7 +37139,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getShardedClusterBackup --help + source: atlas api cloudBackups getShardedClusterBackup --help - label: Go lang: go source: | @@ -37219,7 +37219,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listShardedClusterBackups --help + source: atlas api cloudBackups listShardedClusterBackups --help - label: Go lang: go source: | @@ -37312,7 +37312,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadSharedClusterBackup --help + source: atlas api sharedTierSnapshots downloadSharedClusterBackup --help - label: Go lang: go source: | @@ -37407,7 +37407,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -37491,7 +37491,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackupRestoreJobs --help + source: atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help - label: Go lang: go source: | @@ -37580,7 +37580,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -37660,7 +37660,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackups --help + source: atlas api sharedTierSnapshots listSharedClusterBackups --help - label: Go lang: go source: | @@ -37749,7 +37749,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackup --help + source: atlas api sharedTierSnapshots getSharedClusterBackup --help - label: Go lang: go source: | @@ -37831,7 +37831,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupCheckpoints --help + source: atlas api legacyBackup listLegacyBackupCheckpoints --help - label: Go lang: go source: | @@ -37923,7 +37923,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupCheckpoint --help + source: atlas api legacyBackup getLegacyBackupCheckpoint --help - label: Go lang: go source: | @@ -38004,7 +38004,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPinnedNamespaces --help + source: atlas api collectionLevelMetrics getPinnedNamespaces --help - label: Go lang: go source: | @@ -38098,7 +38098,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPatch --help + source: atlas api collectionLevelMetrics pinNamespacesPatch --help - label: Go lang: go source: | @@ -38196,7 +38196,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPut --help + source: atlas api collectionLevelMetrics pinNamespacesPut --help - label: Go lang: go source: | @@ -38288,7 +38288,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api unpinNamespaces --help + source: atlas api collectionLevelMetrics unpinNamespaces --help - label: Go lang: go source: | @@ -38385,7 +38385,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch createAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38486,7 +38486,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesDeprecated --help + source: atlas api atlasSearch listAtlasSearchIndexesDeprecated --help - label: Go lang: go source: | @@ -38580,7 +38580,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38671,7 +38671,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch getAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38773,7 +38773,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch updateAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38860,7 +38860,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedNamespace --help + source: atlas api globalClusters getManagedNamespace --help - label: Go lang: go source: | @@ -38943,7 +38943,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllCustomZoneMappings --help + source: atlas api globalClusters deleteAllCustomZoneMappings --help - label: Go lang: go source: | @@ -39034,7 +39034,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomZoneMapping --help + source: atlas api globalClusters createCustomZoneMapping --help - label: Go lang: go source: | @@ -39133,7 +39133,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteManagedNamespace --help + source: atlas api globalClusters deleteManagedNamespace --help - label: Go lang: go source: | @@ -39226,7 +39226,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createManagedNamespace --help + source: atlas api globalClusters createManagedNamespace --help - label: Go lang: go source: | @@ -39384,7 +39384,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRollingIndex --help + source: atlas api rollingIndex createRollingIndex --help - label: Go lang: go source: | @@ -39472,7 +39472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOnlineArchives --help + source: atlas api onlineArchive listOnlineArchives --help - label: Go lang: go source: | @@ -39565,7 +39565,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOnlineArchive --help + source: atlas api onlineArchive createOnlineArchive --help - label: Go lang: go source: | @@ -39661,7 +39661,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOnlineArchive --help + source: atlas api onlineArchive deleteOnlineArchive --help - label: Go lang: go source: | @@ -39754,7 +39754,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOnlineArchive --help + source: atlas api onlineArchive getOnlineArchive --help - label: Go lang: go source: | @@ -39856,7 +39856,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOnlineArchive --help + source: atlas api onlineArchive updateOnlineArchive --help - label: Go lang: go source: | @@ -39968,7 +39968,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadOnlineArchiveQueryLogs --help + source: atlas api onlineArchive downloadOnlineArchiveQueryLogs --help - label: Go lang: go source: | @@ -40055,7 +40055,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api endOutageSimulation --help + source: atlas api clusterOutageSimulation endOutageSimulation --help - label: Go lang: go source: | @@ -40139,7 +40139,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOutageSimulation --help + source: atlas api clusterOutageSimulation getOutageSimulation --help - label: Go lang: go source: | @@ -40228,7 +40228,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startOutageSimulation --help + source: atlas api clusterOutageSimulation startOutageSimulation --help - label: Go lang: go source: | @@ -40316,7 +40316,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterAdvancedConfiguration --help + source: atlas api clusters getClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -40410,7 +40410,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help + source: atlas api clusters updateClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -40491,7 +40491,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api testFailover --help + source: atlas api clusters testFailover --help - label: Go lang: go source: | @@ -40590,7 +40590,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupRestoreJobs --help + source: atlas api legacyBackup listLegacyBackupRestoreJobs --help - label: Go lang: go source: | @@ -40677,7 +40677,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLegacyBackupRestoreJob --help + source: atlas api legacyBackup createLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -40774,7 +40774,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupRestoreJob --help + source: atlas api legacyBackup getLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -40856,7 +40856,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchDeployment --help + source: atlas api atlasSearch deleteAtlasSearchDeployment --help - label: Go lang: go source: | @@ -40935,7 +40935,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchDeployment --help + source: atlas api atlasSearch getAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41023,7 +41023,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchDeployment --help + source: atlas api atlasSearch updateAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41115,7 +41115,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchDeployment --help + source: atlas api atlasSearch createAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41210,7 +41210,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesCluster --help + source: atlas api atlasSearch listAtlasSearchIndexesCluster --help - label: Go lang: go source: | @@ -41301,7 +41301,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndex --help + source: atlas api atlasSearch createAtlasSearchIndex --help - label: Go lang: go source: | @@ -41408,7 +41408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexes --help + source: atlas api atlasSearch listAtlasSearchIndexes --help - label: Go lang: go source: | @@ -41509,7 +41509,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexByName --help + source: atlas api atlasSearch deleteAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -41609,7 +41609,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexByName --help + source: atlas api atlasSearch getAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -41718,7 +41718,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexByName --help + source: atlas api atlasSearch updateAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -41814,7 +41814,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndex --help + source: atlas api atlasSearch deleteAtlasSearchIndex --help - label: Go lang: go source: | @@ -41911,7 +41911,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndex --help + source: atlas api atlasSearch getAtlasSearchIndex --help - label: Go lang: go source: | @@ -42011,7 +42011,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndex --help + source: atlas api atlasSearch updateAtlasSearchIndex --help - label: Go lang: go source: | @@ -42097,7 +42097,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshotSchedule --help + source: atlas api legacyBackup getLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -42185,7 +42185,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + source: atlas api legacyBackup updateLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -42281,7 +42281,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacySnapshots --help + source: atlas api legacyBackup listLegacySnapshots --help - label: Go lang: go source: | @@ -42371,7 +42371,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLegacySnapshot --help + source: atlas api legacyBackup deleteLegacySnapshot --help - label: Go lang: go source: | @@ -42458,7 +42458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshot --help + source: atlas api legacyBackup getLegacySnapshot --help - label: Go lang: go source: | @@ -42552,7 +42552,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotRetention --help + source: atlas api legacyBackup updateLegacySnapshotRetention --help - label: Go lang: go source: | @@ -42634,7 +42634,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterStatus --help + source: atlas api clusters getClusterStatus --help - label: Go lang: go source: | @@ -42725,7 +42725,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinFeatureCompatibilityVersion --help + source: atlas api clusters pinFeatureCompatibilityVersion --help - label: Go lang: go source: | @@ -42815,7 +42815,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api unpinFeatureCompatibilityVersion --help + source: atlas api clusters unpinFeatureCompatibilityVersion --help - label: Go lang: go source: | @@ -42932,7 +42932,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostLogs --help + source: atlas api monitoringAndLogs getHostLogs --help - label: Go lang: go source: | @@ -43018,7 +43018,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderRegions --help + source: atlas api clusters listCloudProviderRegions --help - label: Go lang: go source: | @@ -43102,7 +43102,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedCluster --help + source: atlas api clusters upgradeSharedCluster --help - label: Go lang: go source: | @@ -43190,7 +43190,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedClusterToServerless --help + source: atlas api clusters upgradeSharedClusterToServerless --help - label: Go lang: go source: | @@ -43266,7 +43266,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceMetrics --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help - label: Go lang: go source: | @@ -43351,7 +43351,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help + source: atlas api networkPeering listPeeringContainerByCloudProvider --help - label: Go lang: go source: | @@ -43434,7 +43434,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringContainer --help + source: atlas api networkPeering createPeeringContainer --help - label: Go lang: go source: | @@ -43523,7 +43523,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringContainer --help + source: atlas api networkPeering deletePeeringContainer --help - label: Go lang: go source: | @@ -43601,7 +43601,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringContainer --help + source: atlas api networkPeering getPeeringContainer --help - label: Go lang: go source: | @@ -43694,7 +43694,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringContainer --help + source: atlas api networkPeering updatePeeringContainer --help - label: Go lang: go source: | @@ -43770,7 +43770,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainers --help + source: atlas api networkPeering listPeeringContainers --help - label: Go lang: go source: | @@ -43841,7 +43841,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCustomDatabaseRoles --help + source: atlas api customDatabaseRoles listCustomDatabaseRoles --help - label: Go lang: go source: | @@ -43924,7 +43924,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomDatabaseRole --help + source: atlas api customDatabaseRoles createCustomDatabaseRole --help - label: Go lang: go source: | @@ -44007,7 +44007,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCustomDatabaseRole --help + source: atlas api customDatabaseRoles deleteCustomDatabaseRole --help - label: Go lang: go source: | @@ -44083,7 +44083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCustomDatabaseRole --help + source: atlas api customDatabaseRoles getCustomDatabaseRole --help - label: Go lang: go source: | @@ -44172,7 +44172,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCustomDatabaseRole --help + source: atlas api customDatabaseRoles updateCustomDatabaseRole --help - label: Go lang: go source: | @@ -44256,7 +44256,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFederatedDatabases --help + source: atlas api dataFederation listFederatedDatabases --help - label: Go lang: go source: | @@ -44337,7 +44337,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFederatedDatabase --help + source: atlas api dataFederation createFederatedDatabase --help - label: Go lang: go source: | @@ -44416,7 +44416,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederatedDatabase --help + source: atlas api dataFederation deleteFederatedDatabase --help - label: Go lang: go source: | @@ -44493,7 +44493,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederatedDatabase --help + source: atlas api dataFederation getFederatedDatabase --help - label: Go lang: go source: | @@ -44582,7 +44582,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFederatedDatabase --help + source: atlas api dataFederation updateFederatedDatabase --help - label: Go lang: go source: | @@ -44665,7 +44665,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimits --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimits --help - label: Go lang: go source: | @@ -44758,7 +44758,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOneDataFederationInstanceQueryLimit --help + source: atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help - label: Go lang: go source: | @@ -44851,7 +44851,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimit --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimit --help - label: Go lang: go source: | @@ -44954,7 +44954,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + source: atlas api dataFederation createOneDataFederationQueryLimit --help - label: Go lang: go source: | @@ -45057,7 +45057,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFederatedDatabaseQueryLogs --help + source: atlas api dataFederation downloadFederatedDatabaseQueryLogs --help - label: Go lang: go source: | @@ -45131,7 +45131,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUsers --help + source: atlas api databaseUsers listDatabaseUsers --help - label: Go lang: go source: | @@ -45305,7 +45305,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUser --help + source: atlas api databaseUsers createDatabaseUser --help - label: Go lang: go source: | @@ -45408,7 +45408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDatabaseUser --help + source: atlas api databaseUsers deleteDatabaseUser --help - label: Go lang: go source: | @@ -45504,7 +45504,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseUser --help + source: atlas api databaseUsers getDatabaseUser --help - label: Go lang: go source: | @@ -45613,7 +45613,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDatabaseUser --help + source: atlas api databaseUsers updateDatabaseUser --help - label: Go lang: go source: | @@ -45697,7 +45697,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUserCertificates --help + source: atlas api x509Authentication listDatabaseUserCertificates --help - label: Go lang: go source: | @@ -45795,7 +45795,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUserCertificate --help + source: atlas api x509Authentication createDatabaseUserCertificate --help - label: Go lang: go source: | @@ -45914,7 +45914,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByClusterName --help + source: atlas api accessTracking listAccessLogsByClusterName --help - label: Go lang: go source: | @@ -46026,7 +46026,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByHostname --help + source: atlas api accessTracking listAccessLogsByHostname --help - label: Go lang: go source: | @@ -46098,7 +46098,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help - label: Go lang: go source: | @@ -46191,7 +46191,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help - label: Go lang: go source: | @@ -46272,7 +46272,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help - label: Go lang: go source: | @@ -46355,7 +46355,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -46452,7 +46452,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help - label: Go lang: go source: | @@ -46537,7 +46537,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -46663,7 +46663,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectEvents --help + source: atlas api events listProjectEvents --help - label: Go lang: go source: | @@ -46752,7 +46752,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectEvent --help + source: atlas api events getProjectEvent --help - label: Go lang: go source: | @@ -46823,7 +46823,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listMetricTypes --help + source: atlas api monitoringAndLogs listMetricTypes --help - label: Go lang: go source: | @@ -46924,7 +46924,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIndexMetrics --help + source: atlas api monitoringAndLogs getIndexMetrics --help - label: Go lang: go source: | @@ -47024,7 +47024,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIndexMetrics --help + source: atlas api monitoringAndLogs listIndexMetrics --help - label: Go lang: go source: | @@ -47123,7 +47123,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMeasurements --help + source: atlas api monitoringAndLogs getMeasurements --help - label: Go lang: go source: | @@ -47199,7 +47199,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listThirdPartyIntegrations --help + source: atlas api thirdPartyIntegrations listThirdPartyIntegrations --help - label: Go lang: go source: | @@ -47290,7 +47290,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help - label: Go lang: go source: | @@ -47380,7 +47380,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations getThirdPartyIntegration --help - label: Go lang: go source: | @@ -47482,7 +47482,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations createThirdPartyIntegration --help - label: Go lang: go source: | @@ -47586,7 +47586,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations updateThirdPartyIntegration --help - label: Go lang: go source: | @@ -47668,7 +47668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectInvitations --help + source: atlas api projects listProjectInvitations --help - label: Go lang: go source: | @@ -47749,7 +47749,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitation --help + source: atlas api projects updateProjectInvitation --help - label: Go lang: go source: | @@ -47830,7 +47830,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectInvitation --help + source: atlas api projects createProjectInvitation --help - label: Go lang: go source: | @@ -47913,7 +47913,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectInvitation --help + source: atlas api projects deleteProjectInvitation --help - label: Go lang: go source: | @@ -47994,7 +47994,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectInvitation --help + source: atlas api projects getProjectInvitation --help - label: Go lang: go source: | @@ -48083,7 +48083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitationById --help + source: atlas api projects updateProjectInvitationById --help - label: Go lang: go source: | @@ -48159,7 +48159,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllIPAddresses --help + source: atlas api projects returnAllIpaddresses --help - label: Go lang: go source: | @@ -48236,7 +48236,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectLimits --help + source: atlas api projects listProjectLimits --help - label: Go lang: go source: | @@ -48345,7 +48345,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectLimit --help + source: atlas api projects deleteProjectLimit --help - label: Go lang: go source: | @@ -48455,7 +48455,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLimit --help + source: atlas api projects getProjectLimit --help - label: Go lang: go source: | @@ -48575,7 +48575,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setProjectLimit --help + source: atlas api projects setProjectLimit --help - label: Go lang: go source: | @@ -48669,7 +48669,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushMigration --help + source: atlas api cloudMigrationService createPushMigration --help - label: Go lang: go source: | @@ -48747,7 +48747,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushMigration --help + source: atlas api cloudMigrationService getPushMigration --help - label: Go lang: go source: | @@ -48821,7 +48821,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cutoverMigration --help + source: atlas api cloudMigrationService cutoverMigration --help - label: Go lang: go source: | @@ -48908,7 +48908,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateMigration --help + source: atlas api cloudMigrationService validateMigration --help - label: Go lang: go source: | @@ -48996,7 +48996,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getValidationStatus --help + source: atlas api cloudMigrationService getValidationStatus --help - label: Go lang: go source: | @@ -49064,7 +49064,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resetMaintenanceWindow --help + source: atlas api maintenanceWindows resetMaintenanceWindow --help - label: Go lang: go source: | @@ -49132,7 +49132,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMaintenanceWindow --help + source: atlas api maintenanceWindows getMaintenanceWindow --help - label: Go lang: go source: | @@ -49208,7 +49208,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateMaintenanceWindow --help + source: atlas api maintenanceWindows updateMaintenanceWindow --help - label: Go lang: go source: | @@ -49280,7 +49280,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help + source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help - label: Go lang: go source: | @@ -49352,7 +49352,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deferMaintenanceWindow --help + source: atlas api maintenanceWindows deferMaintenanceWindow --help - label: Go lang: go source: | @@ -49425,7 +49425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedSlowMs --help + source: atlas api performanceAdvisor getManagedSlowMs --help - label: Go lang: go source: | @@ -49494,7 +49494,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableSlowOperationThresholding --help + source: atlas api performanceAdvisor disableSlowOperationThresholding --help - label: Go lang: go source: | @@ -49563,7 +49563,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api enableSlowOperationThresholding --help + source: atlas api performanceAdvisor enableSlowOperationThresholding --help - label: Go lang: go source: | @@ -49677,7 +49677,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLTSVersions --help + source: atlas api projects getProjectLtsversions --help - label: Go lang: go source: | @@ -49761,7 +49761,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringConnections --help + source: atlas api networkPeering listPeeringConnections --help - label: Go lang: go source: | @@ -49845,7 +49845,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringConnection --help + source: atlas api networkPeering createPeeringConnection --help - label: Go lang: go source: | @@ -49929,7 +49929,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringConnection --help + source: atlas api networkPeering deletePeeringConnection --help - label: Go lang: go source: | @@ -50008,7 +50008,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringConnection --help + source: atlas api networkPeering getPeeringConnection --help - label: Go lang: go source: | @@ -50098,7 +50098,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringConnection --help + source: atlas api networkPeering updatePeeringConnection --help - label: Go lang: go source: | @@ -50174,7 +50174,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelines --help + source: atlas api dataLakePipelines listPipelines --help - label: Go lang: go source: | @@ -50252,7 +50252,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPipeline --help + source: atlas api dataLakePipelines createPipeline --help - label: Go lang: go source: | @@ -50335,7 +50335,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipeline --help + source: atlas api dataLakePipelines deletePipeline --help - label: Go lang: go source: | @@ -50414,7 +50414,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipeline --help + source: atlas api dataLakePipelines getPipeline --help - label: Go lang: go source: | @@ -50503,7 +50503,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePipeline --help + source: atlas api dataLakePipelines updatePipeline --help - label: Go lang: go source: | @@ -50589,7 +50589,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSchedules --help + source: atlas api dataLakePipelines listPipelineSchedules --help - label: Go lang: go source: | @@ -50679,7 +50679,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSnapshots --help + source: atlas api dataLakePipelines listPipelineSnapshots --help - label: Go lang: go source: | @@ -50759,7 +50759,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pausePipeline --help + source: atlas api dataLakePipelines pausePipeline --help - label: Go lang: go source: | @@ -50843,7 +50843,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resumePipeline --help + source: atlas api dataLakePipelines resumePipeline --help - label: Go lang: go source: | @@ -50937,7 +50937,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineRuns --help + source: atlas api dataLakePipelines listPipelineRuns --help - label: Go lang: go source: | @@ -51027,7 +51027,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipelineRunDataset --help + source: atlas api dataLakePipelines deletePipelineRunDataset --help - label: Go lang: go source: | @@ -51116,7 +51116,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipelineRun --help + source: atlas api dataLakePipelines getPipelineRun --help - label: Go lang: go source: | @@ -51203,7 +51203,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api triggerSnapshotIngestion --help + source: atlas api dataLakePipelines triggerSnapshotIngestion --help - label: Go lang: go source: | @@ -51289,7 +51289,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateEndpointServices --help + source: atlas api privateEndpointServices listPrivateEndpointServices --help - label: Go lang: go source: | @@ -51378,7 +51378,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpointService --help + source: atlas api privateEndpointServices deletePrivateEndpointService --help - label: Go lang: go source: | @@ -51468,7 +51468,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpointService --help + source: atlas api privateEndpointServices getPrivateEndpointService --help - label: Go lang: go source: | @@ -51570,7 +51570,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpoint --help + source: atlas api privateEndpointServices createPrivateEndpoint --help - label: Go lang: go source: | @@ -51670,7 +51670,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpoint --help + source: atlas api privateEndpointServices deletePrivateEndpoint --help - label: Go lang: go source: | @@ -51767,7 +51767,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpoint --help + source: atlas api privateEndpointServices getPrivateEndpoint --help - label: Go lang: go source: | @@ -51846,7 +51846,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpointService --help + source: atlas api privateEndpointServices createPrivateEndpointService --help - label: Go lang: go source: | @@ -51921,7 +51921,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -51998,7 +51998,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -52082,7 +52082,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessPrivateEndpoints --help + source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help - label: Go lang: go source: | @@ -52172,7 +52172,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52263,7 +52263,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52349,7 +52349,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52442,7 +52442,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52519,7 +52519,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + source: atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help - label: Go lang: go source: | @@ -52600,7 +52600,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disablePeering --help + source: atlas api networkPeering disablePeering --help - label: Go lang: go source: | @@ -52680,7 +52680,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDataFederationPrivateEndpoints --help + source: atlas api dataFederation listDataFederationPrivateEndpoints --help - label: Go lang: go source: | @@ -52776,7 +52776,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help + source: atlas api dataFederation createDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -52860,7 +52860,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help + source: atlas api dataFederation deleteDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -52941,7 +52941,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataFederationPrivateEndpoint --help + source: atlas api dataFederation getDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -53013,7 +53013,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasProcesses --help + source: atlas api monitoringAndLogs listAtlasProcesses --help - label: Go lang: go source: | @@ -53090,7 +53090,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasProcess --help + source: atlas api monitoringAndLogs getAtlasProcess --help - label: Go lang: go source: | @@ -53202,7 +53202,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help - label: Go lang: go source: | @@ -53274,7 +53274,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForHost --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help - label: Go lang: go source: | @@ -53354,7 +53354,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabases --help + source: atlas api monitoringAndLogs listDatabases --help - label: Go lang: go source: | @@ -53437,7 +53437,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabase --help + source: atlas api monitoringAndLogs getDatabase --help - label: Go lang: go source: | @@ -53546,7 +53546,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseMeasurements --help + source: atlas api monitoringAndLogs getDatabaseMeasurements --help - label: Go lang: go source: | @@ -53626,7 +53626,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskPartitions --help + source: atlas api monitoringAndLogs listDiskPartitions --help - label: Go lang: go source: | @@ -53708,7 +53708,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskMeasurements --help + source: atlas api monitoringAndLogs listDiskMeasurements --help - label: Go lang: go source: | @@ -53833,7 +53833,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDiskMeasurements --help + source: atlas api monitoringAndLogs getDiskMeasurements --help - label: Go lang: go source: | @@ -54069,7 +54069,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostMeasurements --help + source: atlas api monitoringAndLogs getHostMeasurements --help - label: Go lang: go source: | @@ -54166,7 +54166,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueryNamespaces --help + source: atlas api performanceAdvisor listSlowQueryNamespaces --help - label: Go lang: go source: | @@ -54280,7 +54280,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueries --help + source: atlas api performanceAdvisor listSlowQueries --help - label: Go lang: go source: | @@ -54401,7 +54401,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSuggestedIndexes --help + source: atlas api performanceAdvisor listSuggestedIndexes --help - label: Go lang: go source: | @@ -54474,7 +54474,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport deletePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -54546,7 +54546,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport getPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -54626,7 +54626,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport updatePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -54710,7 +54710,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport createPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -54795,7 +54795,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api loadSampleDataset --help + source: atlas api clusters loadSampleDataset --help - label: Go lang: go source: | @@ -54876,7 +54876,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSampleDatasetLoadStatus --help + source: atlas api clusters getSampleDatasetLoadStatus --help - label: Go lang: go source: | @@ -54948,7 +54948,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessInstances --help + source: atlas api serverlessInstances listServerlessInstances --help - label: Go lang: go source: | @@ -55027,7 +55027,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessInstance --help + source: atlas api serverlessInstances createServerlessInstance --help - label: Go lang: go source: | @@ -55114,7 +55114,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackupRestoreJobs --help + source: atlas api cloudBackups listServerlessBackupRestoreJobs --help - label: Go lang: go source: | @@ -55204,7 +55204,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + source: atlas api cloudBackups createServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -55297,7 +55297,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackupRestoreJob --help + source: atlas api cloudBackups getServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -55380,7 +55380,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackups --help + source: atlas api cloudBackups listServerlessBackups --help - label: Go lang: go source: | @@ -55469,7 +55469,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackup --help + source: atlas api cloudBackups getServerlessBackup --help - label: Go lang: go source: | @@ -55547,7 +55547,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessAutoIndexing --help + source: atlas api performanceAdvisor getServerlessAutoIndexing --help - label: Go lang: go source: | @@ -55629,7 +55629,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setServerlessAutoIndexing --help + source: atlas api performanceAdvisor setServerlessAutoIndexing --help - label: Go lang: go source: | @@ -55715,7 +55715,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessInstance --help + source: atlas api serverlessInstances deleteServerlessInstance --help - label: Go lang: go source: | @@ -55796,7 +55796,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessInstance --help + source: atlas api serverlessInstances getServerlessInstance --help - label: Go lang: go source: | @@ -55882,7 +55882,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessInstance --help + source: atlas api serverlessInstances updateServerlessInstance --help - label: Go lang: go source: | @@ -55959,7 +55959,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccounts --help + source: atlas api groups listProjectServiceAccounts --help - label: Go lang: go source: | @@ -56037,7 +56037,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccount --help + source: atlas api groups createProjectServiceAccount --help - label: Go lang: go source: | @@ -56119,7 +56119,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccount --help + source: atlas api groups deleteProjectServiceAccount --help - label: Go lang: go source: | @@ -56195,7 +56195,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectServiceAccount --help + source: atlas api groups getProjectServiceAccount --help - label: Go lang: go source: | @@ -56280,7 +56280,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectServiceAccount --help + source: atlas api groups updateProjectServiceAccount --help - label: Go lang: go source: | @@ -56371,7 +56371,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectServiceAccount --help + source: atlas api groups addProjectServiceAccount --help - label: Go lang: go source: | @@ -56448,7 +56448,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectSettings --help + source: atlas api projects getProjectSettings --help - label: Go lang: go source: | @@ -56527,7 +56527,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectSettings --help + source: atlas api projects updateProjectSettings --help - label: Go lang: go source: | @@ -56602,7 +56602,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamInstances --help + source: atlas api streams listStreamInstances --help - label: Go lang: go source: | @@ -56679,7 +56679,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstance --help + source: atlas api streams createStreamInstance --help - label: Go lang: go source: | @@ -56762,7 +56762,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamInstance --help + source: atlas api streams deleteStreamInstance --help - label: Go lang: go source: | @@ -56844,7 +56844,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamInstance --help + source: atlas api streams getStreamInstance --help - label: Go lang: go source: | @@ -56931,7 +56931,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamInstance --help + source: atlas api streams updateStreamInstance --help - label: Go lang: go source: | @@ -57035,7 +57035,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadStreamTenantAuditLogs --help + source: atlas api streams downloadStreamTenantAuditLogs --help - label: Go lang: go source: | @@ -57116,7 +57116,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamConnections --help + source: atlas api streams listStreamConnections --help - label: Go lang: go source: | @@ -57201,7 +57201,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamConnection --help + source: atlas api streams createStreamConnection --help - label: Go lang: go source: | @@ -57290,7 +57290,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamConnection --help + source: atlas api streams deleteStreamConnection --help - label: Go lang: go source: | @@ -57371,7 +57371,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamConnection --help + source: atlas api streams getStreamConnection --help - label: Go lang: go source: | @@ -57464,7 +57464,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamConnection --help + source: atlas api streams updateStreamConnection --help - label: Go lang: go source: | @@ -57554,7 +57554,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamProcessor --help + source: atlas api streams createStreamProcessor --help - label: Go lang: go source: | @@ -57641,7 +57641,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamProcessor --help + source: atlas api streams deleteStreamProcessor --help - label: Go lang: go source: | @@ -57725,7 +57725,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamProcessor --help + source: atlas api streams getStreamProcessor --help - label: Go lang: go source: | @@ -57810,7 +57810,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startStreamProcessor --help + source: atlas api streams startStreamProcessor --help - label: Go lang: go source: | @@ -57899,7 +57899,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api stopStreamProcessor --help + source: atlas api streams stopStreamProcessor --help - label: Go lang: go source: | @@ -57985,7 +57985,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamProcessors --help + source: atlas api streams listStreamProcessors --help - label: Go lang: go source: | @@ -58063,7 +58063,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectTeams --help + source: atlas api teams listProjectTeams --help - label: Go lang: go source: | @@ -58149,7 +58149,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addAllTeamsToProject --help + source: atlas api teams addAllTeamsToProject --help - label: Go lang: go source: | @@ -58237,7 +58237,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectTeam --help + source: atlas api teams removeProjectTeam --help - label: Go lang: go source: | @@ -58330,7 +58330,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateTeamRoles --help + source: atlas api teams updateTeamRoles --help - label: Go lang: go source: | @@ -58403,7 +58403,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfiguration --help + source: atlas api ldapConfiguration getLdapconfiguration --help - label: Go lang: go source: | @@ -58483,7 +58483,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api saveLDAPConfiguration --help + source: atlas api ldapConfiguration saveLdapconfiguration --help - label: Go lang: go source: | @@ -58558,7 +58558,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableCustomerManagedX509 --help + source: atlas api x509Authentication disableCustomerManagedX509 --help - label: Go lang: go source: | @@ -58627,7 +58627,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLDAPConfiguration --help + source: atlas api ldapConfiguration deleteLdapconfiguration --help - label: Go lang: go source: | @@ -58705,7 +58705,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyLDAPConfiguration --help + source: atlas api ldapConfiguration verifyLdapconfiguration --help - label: Go lang: go source: | @@ -58787,7 +58787,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfigurationStatus --help + source: atlas api ldapConfiguration getLdapconfigurationStatus --help - label: Go lang: go source: | @@ -58871,7 +58871,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api projects listProjectUsers --help - label: Go lang: go source: | @@ -58951,7 +58951,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api projects removeProjectUser --help - label: Go lang: go source: | @@ -59040,7 +59040,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectRoles --help + source: atlas api projects updateProjectRoles --help - label: Go lang: go source: | @@ -59119,7 +59119,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api migrateProjectToAnotherOrg --help + source: atlas api projects migrateProjectToAnotherOrg --help - label: Go lang: go source: | @@ -59205,7 +59205,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectByName --help + source: atlas api projects getProjectByName --help - label: Go lang: go source: | @@ -59287,7 +59287,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizations --help + source: atlas api organizations listOrganizations --help - label: Go lang: go source: | @@ -59369,7 +59369,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganization --help + source: atlas api organizations createOrganization --help - label: Go lang: go source: | @@ -59454,7 +59454,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganization --help + source: atlas api organizations deleteOrganization --help - label: Go lang: go source: | @@ -59528,7 +59528,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganization --help + source: atlas api organizations getOrganization --help - label: Go lang: go source: | @@ -59609,7 +59609,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameOrganization --help + source: atlas api organizations renameOrganization --help - label: Go lang: go source: | @@ -59688,7 +59688,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeys --help + source: atlas api programmaticApiKeys listApiKeys --help - label: Go lang: go source: | @@ -59766,7 +59766,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKey --help + source: atlas api programmaticApiKeys createApiKey --help - label: Go lang: go source: | @@ -59851,7 +59851,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKey --help + source: atlas api programmaticApiKeys deleteApiKey --help - label: Go lang: go source: | @@ -59931,7 +59931,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKey --help + source: atlas api programmaticApiKeys getApiKey --help - label: Go lang: go source: | @@ -60020,7 +60020,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKey --help + source: atlas api programmaticApiKeys updateApiKey --help - label: Go lang: go source: | @@ -60108,7 +60108,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeyAccessListsEntries --help + source: atlas api programmaticApiKeys listApiKeyAccessListsEntries --help - label: Go lang: go source: | @@ -60201,7 +60201,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKeyAccessList --help + source: atlas api programmaticApiKeys createApiKeyAccessList --help - label: Go lang: go source: | @@ -60298,7 +60298,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKeyAccessListEntry --help + source: atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help - label: Go lang: go source: | @@ -60388,7 +60388,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKeyAccessList --help + source: atlas api programmaticApiKeys getApiKeyAccessList --help - label: Go lang: go source: | @@ -60465,7 +60465,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess --help + source: atlas api invoices createCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -60556,7 +60556,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess_1 --help + source: atlas api invoices createCostExplorerQueryProcess1 --help - label: Go lang: go source: | @@ -60660,7 +60660,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationEvents --help + source: atlas api events listOrganizationEvents --help - label: Go lang: go source: | @@ -60749,7 +60749,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationEvent --help + source: atlas api events getOrganizationEvent --help - label: Go lang: go source: | @@ -60822,7 +60822,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederationSettings --help + source: atlas api federatedAuthentication getFederationSettings --help - label: Go lang: go source: | @@ -60911,7 +60911,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationProjects --help + source: atlas api organizations listOrganizationProjects --help - label: Go lang: go source: | @@ -60992,7 +60992,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationInvitations --help + source: atlas api organizations listOrganizationInvitations --help - label: Go lang: go source: | @@ -61071,7 +61071,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitation --help + source: atlas api organizations updateOrganizationInvitation --help - label: Go lang: go source: | @@ -61154,7 +61154,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationInvitation --help + source: atlas api organizations createOrganizationInvitation --help - label: Go lang: go source: | @@ -61237,7 +61237,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganizationInvitation --help + source: atlas api organizations deleteOrganizationInvitation --help - label: Go lang: go source: | @@ -61317,7 +61317,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationInvitation --help + source: atlas api organizations getOrganizationInvitation --help - label: Go lang: go source: | @@ -61405,7 +61405,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitationById --help + source: atlas api organizations updateOrganizationInvitationById --help - label: Go lang: go source: | @@ -61542,7 +61542,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listInvoices --help + source: atlas api invoices listInvoices --help - label: Go lang: go source: | @@ -61628,7 +61628,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getInvoice --help + source: atlas api invoices getInvoice --help - label: Go lang: go source: | @@ -61715,7 +61715,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadInvoiceCSV --help + source: atlas api invoices downloadInvoiceCsv --help - label: Go lang: go source: | @@ -61786,7 +61786,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPendingInvoices --help + source: atlas api invoices listPendingInvoices --help - label: Go lang: go source: | @@ -61859,7 +61859,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSourceProjects --help + source: atlas api cloudMigrationService listSourceProjects --help - label: Go lang: go source: | @@ -61929,7 +61929,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLinkToken --help + source: atlas api cloudMigrationService deleteLinkToken --help - label: Go lang: go source: | @@ -62006,7 +62006,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLinkToken --help + source: atlas api cloudMigrationService createLinkToken --help - label: Go lang: go source: | @@ -62083,7 +62083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccounts --help + source: atlas api organizations listServiceAccounts --help - label: Go lang: go source: | @@ -62160,7 +62160,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccount --help + source: atlas api organizations createServiceAccount --help - label: Go lang: go source: | @@ -62239,7 +62239,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccount --help + source: atlas api organizations deleteServiceAccount --help - label: Go lang: go source: | @@ -62315,7 +62315,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServiceAccount --help + source: atlas api organizations getServiceAccount --help - label: Go lang: go source: | @@ -62400,7 +62400,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServiceAccount --help + source: atlas api organizations updateServiceAccount --help - label: Go lang: go source: | @@ -62483,7 +62483,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountProjects --help + source: atlas api organizations listServiceAccountProjects --help - label: Go lang: go source: | @@ -62567,7 +62567,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountSecret --help + source: atlas api organizations createServiceAccountSecret --help - label: Go lang: go source: | @@ -62652,7 +62652,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountSecret --help + source: atlas api organizations deleteServiceAccountSecret --help - label: Go lang: go source: | @@ -62725,7 +62725,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationSettings --help + source: atlas api organizations getOrganizationSettings --help - label: Go lang: go source: | @@ -62804,7 +62804,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationSettings --help + source: atlas api organizations updateOrganizationSettings --help - label: Go lang: go source: | @@ -62887,7 +62887,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationTeams --help + source: atlas api teams listOrganizationTeams --help - label: Go lang: go source: | @@ -62971,7 +62971,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createTeam --help + source: atlas api teams createTeam --help - label: Go lang: go source: | @@ -63060,7 +63060,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteTeam --help + source: atlas api teams deleteTeam --help - label: Go lang: go source: | @@ -63144,7 +63144,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamById --help + source: atlas api teams getTeamById --help - label: Go lang: go source: | @@ -63237,7 +63237,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameTeam --help + source: atlas api teams renameTeam --help - label: Go lang: go source: | @@ -63330,7 +63330,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api teams listTeamUsers --help - label: Go lang: go source: | @@ -63425,7 +63425,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addTeamUser --help + source: atlas api teams addTeamUser --help - label: Go lang: go source: | @@ -63521,7 +63521,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeTeamUser --help + source: atlas api teams removeTeamUser --help - label: Go lang: go source: | @@ -63603,7 +63603,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamByName --help + source: atlas api teams getTeamByName --help - label: Go lang: go source: | @@ -63679,7 +63679,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api organizations listOrganizationUsers --help - label: Go lang: go source: | @@ -63762,7 +63762,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api organizations removeOrganizationUser --help - label: Go lang: go source: | @@ -63851,7 +63851,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationRoles --help + source: atlas api organizations updateOrganizationRoles --help - label: Go lang: go source: | @@ -63918,7 +63918,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help + source: atlas api root returnAllControlPlaneIpaddresses --help - label: Go lang: go source: | @@ -64000,7 +64000,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUser --help + source: atlas api mongoDbCloudUsers createUser --help - label: Go lang: go source: | @@ -64083,7 +64083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUser --help + source: atlas api mongoDbCloudUsers getUser --help - label: Go lang: go source: | @@ -64160,7 +64160,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUserByUsername --help + source: atlas api mongoDbCloudUsers getUserByUsername --help - label: Go lang: go source: | 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 03f06041cc..8926814274 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 @@ -36801,7 +36801,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "source": "atlas api root getSystemStatus --help" }, { "lang": "go", @@ -36868,7 +36868,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "source": "atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help" }, { "lang": "go", @@ -36941,7 +36941,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "source": "atlas api clusters listClustersForAllProjects --help" }, { "lang": "go", @@ -37014,7 +37014,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "source": "atlas api events listEventTypes --help" }, { "lang": "go", @@ -37078,7 +37078,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "source": "atlas api federatedAuthentication deleteFederationApp --help" }, { "lang": "go", @@ -37154,7 +37154,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "source": "atlas api federatedAuthentication listConnectedOrgConfigs --help" }, { "lang": "go", @@ -37237,7 +37237,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication removeConnectedOrgConfig --help" }, { "lang": "go", @@ -37318,7 +37318,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication getConnectedOrgConfig --help" }, { "lang": "go", @@ -37410,7 +37410,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication updateConnectedOrgConfig --help" }, { "lang": "go", @@ -37483,7 +37483,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "source": "atlas api federatedAuthentication listRoleMappings --help" }, { "lang": "go", @@ -37565,7 +37565,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "source": "atlas api federatedAuthentication createRoleMapping --help" }, { "lang": "go", @@ -37648,7 +37648,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "source": "atlas api federatedAuthentication deleteRoleMapping --help" }, { "lang": "go", @@ -37732,7 +37732,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "source": "atlas api federatedAuthentication getRoleMapping --help" }, { "lang": "go", @@ -37827,7 +37827,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "source": "atlas api federatedAuthentication updateRoleMapping --help" }, { "lang": "go", @@ -37935,7 +37935,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "source": "atlas api federatedAuthentication listIdentityProviders --help" }, { "lang": "go", @@ -38017,7 +38017,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "source": "atlas api federatedAuthentication createIdentityProvider --help" }, { "lang": "go", @@ -38094,7 +38094,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "source": "atlas api federatedAuthentication deleteIdentityProvider --help" }, { "lang": "go", @@ -38175,7 +38175,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "source": "atlas api federatedAuthentication getIdentityProvider --help" }, { "lang": "go", @@ -38264,7 +38264,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "source": "atlas api federatedAuthentication updateIdentityProvider --help" }, { "lang": "go", @@ -38341,7 +38341,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "source": "atlas api federatedAuthentication revokeJwksFromIdentityProvider --help" }, { "lang": "go", @@ -38411,7 +38411,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "source": "atlas api federatedAuthentication getIdentityProviderMetadata --help" }, { "lang": "go", @@ -38487,7 +38487,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "source": "atlas api projects listProjects --help" }, { "lang": "go", @@ -38583,7 +38583,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProject --help" + "source": "atlas api projects createProject --help" }, { "lang": "go", @@ -38667,7 +38667,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "source": "atlas api projects getProjectByName --help" }, { "lang": "go", @@ -38737,7 +38737,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "source": "atlas api projects deleteProject --help" }, { "lang": "go", @@ -38805,7 +38805,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProject --help" + "source": "atlas api projects getProject --help" }, { "lang": "go", @@ -38890,7 +38890,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "source": "atlas api projects updateProject --help" }, { "lang": "go", @@ -38976,7 +38976,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "source": "atlas api projects addUserToProject --help" }, { "lang": "go", @@ -39056,7 +39056,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "source": "atlas api projectIpAccessList listProjectIpAccessLists --help" }, { "lang": "go", @@ -39154,7 +39154,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "source": "atlas api projectIpAccessList createProjectIpAccessList --help" }, { "lang": "go", @@ -39239,7 +39239,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "source": "atlas api projectIpAccessList deleteProjectIpAccessList --help" }, { "lang": "go", @@ -39325,7 +39325,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "source": "atlas api projectIpAccessList getProjectIpList --help" }, { "lang": "go", @@ -39412,7 +39412,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "source": "atlas api projectIpAccessList getProjectIpAccessListStatus --help" }, { "lang": "go", @@ -39488,7 +39488,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "source": "atlas api alertConfigurations listAlertConfigurations --help" }, { "lang": "go", @@ -39567,7 +39567,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "source": "atlas api alertConfigurations createAlertConfiguration --help" }, { "lang": "go", @@ -39647,7 +39647,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "source": "atlas api alertConfigurations deleteAlertConfiguration --help" }, { "lang": "go", @@ -39728,7 +39728,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "source": "atlas api alertConfigurations getAlertConfiguration --help" }, { "lang": "go", @@ -39820,7 +39820,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "source": "atlas api alertConfigurations toggleAlertConfiguration --help" }, { "lang": "go", @@ -39915,7 +39915,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "source": "atlas api alertConfigurations updateAlertConfiguration --help" }, { "lang": "go", @@ -40007,7 +40007,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "source": "atlas api alerts listAlertsByAlertConfigurationId --help" }, { "lang": "go", @@ -40099,7 +40099,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "source": "atlas api alerts listAlerts --help" }, { "lang": "go", @@ -40181,7 +40181,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "source": "atlas api alerts getAlert --help" }, { "lang": "go", @@ -40275,7 +40275,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "source": "atlas api alerts acknowledgeAlert --help" }, { "lang": "go", @@ -40366,7 +40366,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "source": "atlas api alertConfigurations listAlertConfigurationsByAlertId --help" }, { "lang": "go", @@ -40446,7 +40446,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "source": "atlas api programmaticApiKeys listProjectApiKeys --help" }, { "lang": "go", @@ -40522,7 +40522,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "source": "atlas api programmaticApiKeys createProjectApiKey --help" }, { "lang": "go", @@ -40608,7 +40608,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "source": "atlas api programmaticApiKeys removeProjectApiKey --help" }, { "lang": "go", @@ -40708,7 +40708,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "source": "atlas api programmaticApiKeys updateApiKeyRoles --help" }, { "lang": "go", @@ -40799,7 +40799,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "source": "atlas api programmaticApiKeys addProjectApiKey --help" }, { "lang": "go", @@ -40866,7 +40866,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "source": "atlas api auditing getAuditingConfiguration --help" }, { "lang": "go", @@ -40945,7 +40945,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "source": "atlas api auditing updateAuditingConfiguration --help" }, { "lang": "go", @@ -41012,7 +41012,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "source": "atlas api awsClustersDns getAwscustomDns --help" }, { "lang": "go", @@ -41088,7 +41088,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "source": "atlas api awsClustersDns toggleAwscustomDns --help" }, { "lang": "go", @@ -41164,7 +41164,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "source": "atlas api cloudBackups listExportBuckets --help" }, { "lang": "go", @@ -41301,7 +41301,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "source": "atlas api cloudBackups createExportBucket --help" }, { "lang": "go", @@ -41384,7 +41384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "source": "atlas api cloudBackups deleteExportBucket --help" }, { "lang": "go", @@ -41496,7 +41496,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "source": "atlas api cloudBackups getExportBucket --help" }, { "lang": "go", @@ -41566,7 +41566,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "source": "atlas api cloudBackups getDataProtectionSettings --help" }, { "lang": "go", @@ -41658,7 +41658,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "source": "atlas api cloudBackups updateDataProtectionSettings --help" }, { "lang": "go", @@ -41725,7 +41725,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "source": "atlas api cloudProviderAccess listCloudProviderAccessRoles --help" }, { "lang": "go", @@ -41805,7 +41805,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess createCloudProviderAccessRole --help" }, { "lang": "go", @@ -41896,7 +41896,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -41975,7 +41975,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess getCloudProviderAccessRole --help" }, { "lang": "go", @@ -42073,7 +42073,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -42158,7 +42158,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "source": "atlas api clusters listClusters --help" }, { "lang": "go", @@ -42253,7 +42253,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "source": "atlas api clusters createCluster --help" }, { "lang": "go", @@ -42348,7 +42348,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "source": "atlas api clusters listCloudProviderRegions --help" }, { "lang": "go", @@ -42438,7 +42438,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "source": "atlas api clusters upgradeSharedCluster --help" }, { "lang": "go", @@ -42528,7 +42528,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "source": "atlas api clusters upgradeSharedClusterToServerless --help" }, { "lang": "go", @@ -42621,7 +42621,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "source": "atlas api clusters deleteCluster --help" }, { "lang": "go", @@ -42704,7 +42704,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "source": "atlas api clusters getCluster --help" }, { "lang": "go", @@ -42802,7 +42802,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "source": "atlas api clusters updateCluster --help" }, { "lang": "go", @@ -42890,7 +42890,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "source": "atlas api cloudBackups listBackupExportJobs --help" }, { "lang": "go", @@ -42984,7 +42984,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "source": "atlas api cloudBackups createBackupExportJob --help" }, { "lang": "go", @@ -43069,7 +43069,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "source": "atlas api cloudBackups getBackupExportJob --help" }, { "lang": "go", @@ -43157,7 +43157,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "source": "atlas api cloudBackups listBackupRestoreJobs --help" }, { "lang": "go", @@ -43254,7 +43254,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "source": "atlas api cloudBackups createBackupRestoreJob --help" }, { "lang": "go", @@ -43348,7 +43348,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "source": "atlas api cloudBackups cancelBackupRestoreJob --help" }, { "lang": "go", @@ -43437,7 +43437,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "source": "atlas api cloudBackups getBackupRestoreJob --help" }, { "lang": "go", @@ -43516,7 +43516,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "source": "atlas api cloudBackups deleteAllBackupSchedules --help" }, { "lang": "go", @@ -43593,7 +43593,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "source": "atlas api cloudBackups getBackupSchedule --help" }, { "lang": "go", @@ -43684,7 +43684,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "source": "atlas api cloudBackups updateBackupSchedule --help" }, { "lang": "go", @@ -43775,7 +43775,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "source": "atlas api cloudBackups listReplicaSetBackups --help" }, { "lang": "go", @@ -43866,7 +43866,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "source": "atlas api cloudBackups takeSnapshot --help" }, { "lang": "go", @@ -43957,7 +43957,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "source": "atlas api cloudBackups deleteShardedClusterBackup --help" }, { "lang": "go", @@ -44049,7 +44049,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "source": "atlas api cloudBackups getShardedClusterBackup --help" }, { "lang": "go", @@ -44131,7 +44131,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "source": "atlas api cloudBackups listShardedClusterBackups --help" }, { "lang": "go", @@ -44225,7 +44225,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "source": "atlas api cloudBackups deleteReplicaSetBackup --help" }, { "lang": "go", @@ -44317,7 +44317,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "source": "atlas api cloudBackups getReplicaSetBackup --help" }, { "lang": "go", @@ -44420,7 +44420,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "source": "atlas api cloudBackups updateSnapshotRetention --help" }, { "lang": "go", @@ -44522,7 +44522,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots downloadSharedClusterBackup --help" }, { "lang": "go", @@ -44621,7 +44621,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -44703,7 +44703,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "source": "atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help" }, { "lang": "go", @@ -44797,7 +44797,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -44879,7 +44879,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "source": "atlas api sharedTierSnapshots listSharedClusterBackups --help" }, { "lang": "go", @@ -44973,7 +44973,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots getSharedClusterBackup --help" }, { "lang": "go", @@ -45062,7 +45062,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "source": "atlas api legacyBackup listLegacyBackupCheckpoints --help" }, { "lang": "go", @@ -45160,7 +45160,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "source": "atlas api legacyBackup getLegacyBackupCheckpoint --help" }, { "lang": "go", @@ -45242,7 +45242,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "source": "atlas api collectionLevelMetrics getPinnedNamespaces --help" }, { "lang": "go", @@ -45344,7 +45344,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPatch --help" }, { "lang": "go", @@ -45446,7 +45446,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPut --help" }, { "lang": "go", @@ -45539,7 +45539,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "source": "atlas api collectionLevelMetrics unpinNamespaces --help" }, { "lang": "go", @@ -45640,7 +45640,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch createAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45746,7 +45746,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesDeprecated --help" }, { "lang": "go", @@ -45846,7 +45846,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -45941,7 +45941,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch getAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -46053,7 +46053,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -46137,7 +46137,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "source": "atlas api globalClusters getManagedNamespace --help" }, { "lang": "go", @@ -46220,7 +46220,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "source": "atlas api globalClusters deleteAllCustomZoneMappings --help" }, { "lang": "go", @@ -46316,7 +46316,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "source": "atlas api globalClusters createCustomZoneMapping --help" }, { "lang": "go", @@ -46418,7 +46418,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "source": "atlas api globalClusters deleteManagedNamespace --help" }, { "lang": "go", @@ -46517,7 +46517,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "source": "atlas api globalClusters createManagedNamespace --help" }, { "lang": "go", @@ -46702,7 +46702,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "source": "atlas api rollingIndex createRollingIndex --help" }, { "lang": "go", @@ -46794,7 +46794,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "source": "atlas api onlineArchive listOnlineArchives --help" }, { "lang": "go", @@ -46895,7 +46895,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "source": "atlas api onlineArchive createOnlineArchive --help" }, { "lang": "go", @@ -47014,7 +47014,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "source": "atlas api onlineArchive downloadOnlineArchiveQueryLogs --help" }, { "lang": "go", @@ -47112,7 +47112,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "source": "atlas api onlineArchive deleteOnlineArchive --help" }, { "lang": "go", @@ -47211,7 +47211,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "source": "atlas api onlineArchive getOnlineArchive --help" }, { "lang": "go", @@ -47324,7 +47324,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "source": "atlas api onlineArchive updateOnlineArchive --help" }, { "lang": "go", @@ -47413,7 +47413,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "source": "atlas api clusterOutageSimulation endOutageSimulation --help" }, { "lang": "go", @@ -47500,7 +47500,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "source": "atlas api clusterOutageSimulation getOutageSimulation --help" }, { "lang": "go", @@ -47595,7 +47595,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "source": "atlas api clusterOutageSimulation startOutageSimulation --help" }, { "lang": "go", @@ -47681,7 +47681,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "source": "atlas api clusters getClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -47780,7 +47780,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "source": "atlas api clusters updateClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -47856,7 +47856,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "source": "atlas api clusters testFailover --help" }, { "lang": "go", @@ -47959,7 +47959,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "source": "atlas api legacyBackup listLegacyBackupRestoreJobs --help" }, { "lang": "go", @@ -48051,7 +48051,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup createLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -48146,7 +48146,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup getLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -48231,7 +48231,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "source": "atlas api atlasSearch deleteAtlasSearchDeployment --help" }, { "lang": "go", @@ -48311,7 +48311,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "source": "atlas api atlasSearch getAtlasSearchDeployment --help" }, { "lang": "go", @@ -48405,7 +48405,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "source": "atlas api atlasSearch updateAtlasSearchDeployment --help" }, { "lang": "go", @@ -48499,7 +48499,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "source": "atlas api atlasSearch createAtlasSearchDeployment --help" }, { "lang": "go", @@ -48598,7 +48598,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesCluster --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesCluster --help" }, { "lang": "go", @@ -48696,7 +48696,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndex --help" + "source": "atlas api atlasSearch createAtlasSearchIndex --help" }, { "lang": "go", @@ -48813,7 +48813,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexes --help" + "source": "atlas api atlasSearch listAtlasSearchIndexes --help" }, { "lang": "go", @@ -48926,7 +48926,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexByName --help" }, { "lang": "go", @@ -49037,7 +49037,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch getAtlasSearchIndexByName --help" }, { "lang": "go", @@ -49162,7 +49162,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexByName --help" }, { "lang": "go", @@ -49260,7 +49260,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndex --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndex --help" }, { "lang": "go", @@ -49366,7 +49366,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndex --help" + "source": "atlas api atlasSearch getAtlasSearchIndex --help" }, { "lang": "go", @@ -49476,7 +49476,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndex --help" + "source": "atlas api atlasSearch updateAtlasSearchIndex --help" }, { "lang": "go", @@ -49556,7 +49556,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup getLegacySnapshotSchedule --help" }, { "lang": "go", @@ -49645,7 +49645,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup updateLegacySnapshotSchedule --help" }, { "lang": "go", @@ -49748,7 +49748,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "source": "atlas api legacyBackup listLegacySnapshots --help" }, { "lang": "go", @@ -49843,7 +49843,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "source": "atlas api legacyBackup deleteLegacySnapshot --help" }, { "lang": "go", @@ -49933,7 +49933,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "source": "atlas api legacyBackup getLegacySnapshot --help" }, { "lang": "go", @@ -50034,7 +50034,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "source": "atlas api legacyBackup updateLegacySnapshotRetention --help" }, { "lang": "go", @@ -50113,7 +50113,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "source": "atlas api clusters getClusterStatus --help" }, { "lang": "go", @@ -50212,7 +50212,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "go", @@ -50364,7 +50364,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "go", @@ -50463,7 +50463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinFeatureCompatibilityVersion --help" + "source": "atlas api clusters pinFeatureCompatibilityVersion --help" }, { "lang": "go", @@ -50554,7 +50554,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api unpinFeatureCompatibilityVersion --help" + "source": "atlas api clusters unpinFeatureCompatibilityVersion --help" }, { "lang": "go", @@ -50681,7 +50681,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "source": "atlas api monitoringAndLogs getHostLogs --help" }, { "lang": "go", @@ -50751,7 +50751,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "go", @@ -50845,7 +50845,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "source": "atlas api networkPeering listPeeringContainerByCloudProvider --help" }, { "lang": "go", @@ -50933,7 +50933,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "source": "atlas api networkPeering createPeeringContainer --help" }, { "lang": "go", @@ -51009,7 +51009,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "source": "atlas api networkPeering listPeeringContainers --help" }, { "lang": "go", @@ -51098,7 +51098,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "source": "atlas api networkPeering deletePeeringContainer --help" }, { "lang": "go", @@ -51176,7 +51176,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "source": "atlas api networkPeering getPeeringContainer --help" }, { "lang": "go", @@ -51277,7 +51277,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "source": "atlas api networkPeering updatePeeringContainer --help" }, { "lang": "go", @@ -51347,7 +51347,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "source": "atlas api customDatabaseRoles listCustomDatabaseRoles --help" }, { "lang": "go", @@ -51435,7 +51435,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles createCustomDatabaseRole --help" }, { "lang": "go", @@ -51517,7 +51517,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles deleteCustomDatabaseRole --help" }, { "lang": "go", @@ -51594,7 +51594,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles getCustomDatabaseRole --help" }, { "lang": "go", @@ -51691,7 +51691,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles updateCustomDatabaseRole --help" }, { "lang": "go", @@ -51774,7 +51774,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "source": "atlas api dataFederation listFederatedDatabases --help" }, { "lang": "go", @@ -51859,7 +51859,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "source": "atlas api dataFederation createFederatedDatabase --help" }, { "lang": "go", @@ -51935,7 +51935,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "source": "atlas api dataFederation deleteFederatedDatabase --help" }, { "lang": "go", @@ -52012,7 +52012,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "source": "atlas api dataFederation getFederatedDatabase --help" }, { "lang": "go", @@ -52109,7 +52109,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "source": "atlas api dataFederation updateFederatedDatabase --help" }, { "lang": "go", @@ -52191,7 +52191,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimits --help" }, { "lang": "go", @@ -52279,7 +52279,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "source": "atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "go", @@ -52368,7 +52368,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimit --help" }, { "lang": "go", @@ -52471,7 +52471,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "source": "atlas api dataFederation createOneDataFederationQueryLimit --help" }, { "lang": "go", @@ -52577,7 +52577,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "source": "atlas api dataFederation downloadFederatedDatabaseQueryLogs --help" }, { "lang": "go", @@ -52653,7 +52653,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "source": "atlas api databaseUsers listDatabaseUsers --help" }, { "lang": "go", @@ -52893,7 +52893,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "source": "atlas api databaseUsers createDatabaseUser --help" }, { "lang": "go", @@ -52985,7 +52985,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "source": "atlas api databaseUsers deleteDatabaseUser --help" }, { "lang": "go", @@ -53072,7 +53072,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "source": "atlas api databaseUsers getDatabaseUser --help" }, { "lang": "go", @@ -53179,7 +53179,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "source": "atlas api databaseUsers updateDatabaseUser --help" }, { "lang": "go", @@ -53267,7 +53267,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "source": "atlas api x509Authentication listDatabaseUserCertificates --help" }, { "lang": "go", @@ -53369,7 +53369,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "source": "atlas api x509Authentication createDatabaseUserCertificate --help" }, { "lang": "go", @@ -53502,7 +53502,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "source": "atlas api accessTracking listAccessLogsByClusterName --help" }, { "lang": "go", @@ -53632,7 +53632,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "source": "atlas api accessTracking listAccessLogsByHostname --help" }, { "lang": "go", @@ -53699,7 +53699,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help" }, { "lang": "go", @@ -53784,7 +53784,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help" }, { "lang": "go", @@ -53863,7 +53863,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "go", @@ -53951,7 +53951,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -54053,7 +54053,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "go", @@ -54142,7 +54142,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -54285,7 +54285,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "source": "atlas api events listProjectEvents --help" }, { "lang": "go", @@ -54376,7 +54376,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "source": "atlas api events getProjectEvent --help" }, { "lang": "go", @@ -54446,7 +54446,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "source": "atlas api monitoringAndLogs listMetricTypes --help" }, { "lang": "go", @@ -54562,7 +54562,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "source": "atlas api monitoringAndLogs listIndexMetrics --help" }, { "lang": "go", @@ -54681,7 +54681,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "source": "atlas api monitoringAndLogs getIndexMetrics --help" }, { "lang": "go", @@ -54792,7 +54792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "source": "atlas api monitoringAndLogs getMeasurements --help" }, { "lang": "go", @@ -54874,7 +54874,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "source": "atlas api thirdPartyIntegrations listThirdPartyIntegrations --help" }, { "lang": "go", @@ -54969,7 +54969,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help" }, { "lang": "go", @@ -55062,7 +55062,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations getThirdPartyIntegration --help" }, { "lang": "go", @@ -55178,7 +55178,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations createThirdPartyIntegration --help" }, { "lang": "go", @@ -55291,7 +55291,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations updateThirdPartyIntegration --help" }, { "lang": "go", @@ -55371,7 +55371,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "source": "atlas api projects listProjectInvitations --help" }, { "lang": "go", @@ -55455,7 +55455,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "source": "atlas api projects updateProjectInvitation --help" }, { "lang": "go", @@ -55533,7 +55533,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "source": "atlas api projects createProjectInvitation --help" }, { "lang": "go", @@ -55611,7 +55611,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "source": "atlas api projects deleteProjectInvitation --help" }, { "lang": "go", @@ -55693,7 +55693,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "source": "atlas api projects getProjectInvitation --help" }, { "lang": "go", @@ -55786,7 +55786,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "source": "atlas api projects updateProjectInvitationById --help" }, { "lang": "go", @@ -55857,7 +55857,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "source": "atlas api projects returnAllIpaddresses --help" }, { "lang": "go", @@ -55936,7 +55936,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "source": "atlas api projects listProjectLimits --help" }, { "lang": "go", @@ -56033,7 +56033,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "source": "atlas api projects deleteProjectLimit --help" }, { "lang": "go", @@ -56131,7 +56131,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "source": "atlas api projects getProjectLimit --help" }, { "lang": "go", @@ -56240,7 +56240,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "source": "atlas api projects setProjectLimit --help" }, { "lang": "go", @@ -56328,7 +56328,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "source": "atlas api cloudMigrationService createPushMigration --help" }, { "lang": "go", @@ -56416,7 +56416,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "source": "atlas api cloudMigrationService validateMigration --help" }, { "lang": "go", @@ -56502,7 +56502,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "source": "atlas api cloudMigrationService getValidationStatus --help" }, { "lang": "go", @@ -56578,7 +56578,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "source": "atlas api cloudMigrationService getPushMigration --help" }, { "lang": "go", @@ -56654,7 +56654,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "source": "atlas api cloudMigrationService cutoverMigration --help" }, { "lang": "go", @@ -56718,7 +56718,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "source": "atlas api maintenanceWindows resetMaintenanceWindow --help" }, { "lang": "go", @@ -56783,7 +56783,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "source": "atlas api maintenanceWindows getMaintenanceWindow --help" }, { "lang": "go", @@ -56859,7 +56859,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "source": "atlas api maintenanceWindows updateMaintenanceWindow --help" }, { "lang": "go", @@ -56923,7 +56923,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "source": "atlas api maintenanceWindows toggleMaintenanceAutoDefer --help" }, { "lang": "go", @@ -56987,7 +56987,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "source": "atlas api maintenanceWindows deferMaintenanceWindow --help" }, { "lang": "go", @@ -57054,7 +57054,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "source": "atlas api performanceAdvisor getManagedSlowMs --help" }, { "lang": "go", @@ -57121,7 +57121,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor disableSlowOperationThresholding --help" }, { "lang": "go", @@ -57188,7 +57188,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor enableSlowOperationThresholding --help" }, { "lang": "go", @@ -57316,7 +57316,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "source": "atlas api projects getProjectLtsversions --help" }, { "lang": "go", @@ -57409,7 +57409,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "source": "atlas api networkPeering listPeeringConnections --help" }, { "lang": "go", @@ -57498,7 +57498,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "source": "atlas api networkPeering createPeeringConnection --help" }, { "lang": "go", @@ -57580,7 +57580,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "source": "atlas api networkPeering deletePeeringConnection --help" }, { "lang": "go", @@ -57660,7 +57660,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "source": "atlas api networkPeering getPeeringConnection --help" }, { "lang": "go", @@ -57757,7 +57757,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "source": "atlas api networkPeering updatePeeringConnection --help" }, { "lang": "go", @@ -57827,7 +57827,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "source": "atlas api dataLakePipelines listPipelines --help" }, { "lang": "go", @@ -57906,7 +57906,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "source": "atlas api dataLakePipelines createPipeline --help" }, { "lang": "go", @@ -57985,7 +57985,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "source": "atlas api dataLakePipelines deletePipeline --help" }, { "lang": "go", @@ -58065,7 +58065,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "source": "atlas api dataLakePipelines getPipeline --help" }, { "lang": "go", @@ -58159,7 +58159,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "source": "atlas api dataLakePipelines updatePipeline --help" }, { "lang": "go", @@ -58244,7 +58244,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "source": "atlas api dataLakePipelines listPipelineSchedules --help" }, { "lang": "go", @@ -58345,7 +58345,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "source": "atlas api dataLakePipelines listPipelineSnapshots --help" }, { "lang": "go", @@ -58427,7 +58427,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "source": "atlas api dataLakePipelines pausePipeline --help" }, { "lang": "go", @@ -58509,7 +58509,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "source": "atlas api dataLakePipelines resumePipeline --help" }, { "lang": "go", @@ -58610,7 +58610,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "source": "atlas api dataLakePipelines listPipelineRuns --help" }, { "lang": "go", @@ -58705,7 +58705,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "source": "atlas api dataLakePipelines deletePipelineRunDataset --help" }, { "lang": "go", @@ -58798,7 +58798,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "source": "atlas api dataLakePipelines getPipelineRun --help" }, { "lang": "go", @@ -58891,7 +58891,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "source": "atlas api dataLakePipelines triggerSnapshotIngestion --help" }, { "lang": "go", @@ -58973,7 +58973,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "source": "atlas api privateEndpointServices createPrivateEndpointService --help" }, { "lang": "go", @@ -59043,7 +59043,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -59122,7 +59122,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -59203,7 +59203,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "source": "atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help" }, { "lang": "go", @@ -59294,7 +59294,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59384,7 +59384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59472,7 +59472,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59571,7 +59571,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59656,7 +59656,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "source": "atlas api privateEndpointServices listPrivateEndpointServices --help" }, { "lang": "go", @@ -59750,7 +59750,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "source": "atlas api privateEndpointServices deletePrivateEndpointService --help" }, { "lang": "go", @@ -59845,7 +59845,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "source": "atlas api privateEndpointServices getPrivateEndpointService --help" }, { "lang": "go", @@ -59959,7 +59959,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "source": "atlas api privateEndpointServices createPrivateEndpoint --help" }, { "lang": "go", @@ -60063,7 +60063,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "source": "atlas api privateEndpointServices deletePrivateEndpoint --help" }, { "lang": "go", @@ -60168,7 +60168,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "source": "atlas api privateEndpointServices getPrivateEndpoint --help" }, { "lang": "go", @@ -60240,7 +60240,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "source": "atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "go", @@ -60324,7 +60324,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "source": "atlas api networkPeering disablePeering --help" }, { "lang": "go", @@ -60406,7 +60406,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "source": "atlas api dataFederation listDataFederationPrivateEndpoints --help" }, { "lang": "go", @@ -60485,7 +60485,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation createDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -60567,7 +60567,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation deleteDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -60650,7 +60650,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation getDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -60726,7 +60726,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "source": "atlas api monitoringAndLogs listAtlasProcesses --help" }, { "lang": "go", @@ -60804,7 +60804,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "source": "atlas api monitoringAndLogs getAtlasProcess --help" }, { "lang": "go", @@ -60880,7 +60880,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help" }, { "lang": "go", @@ -60967,7 +60967,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "source": "atlas api monitoringAndLogs listDatabases --help" }, { "lang": "go", @@ -61054,7 +61054,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "source": "atlas api monitoringAndLogs getDatabase --help" }, { "lang": "go", @@ -61180,7 +61180,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "source": "atlas api monitoringAndLogs getDatabaseMeasurements --help" }, { "lang": "go", @@ -61267,7 +61267,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "source": "atlas api monitoringAndLogs listDiskPartitions --help" }, { "lang": "go", @@ -61351,7 +61351,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "source": "atlas api monitoringAndLogs listDiskMeasurements --help" }, { "lang": "go", @@ -61486,7 +61486,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "source": "atlas api monitoringAndLogs getDiskMeasurements --help" }, { "lang": "go", @@ -61728,7 +61728,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "source": "atlas api monitoringAndLogs getHostMeasurements --help" }, { "lang": "go", @@ -61824,7 +61824,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "source": "atlas api performanceAdvisor listSlowQueryNamespaces --help" }, { "lang": "go", @@ -61944,7 +61944,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "source": "atlas api performanceAdvisor listSlowQueries --help" }, { "lang": "go", @@ -62080,7 +62080,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "source": "atlas api performanceAdvisor listSuggestedIndexes --help" }, { "lang": "go", @@ -62207,7 +62207,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "go", @@ -62280,7 +62280,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport deletePushBasedLogConfiguration --help" }, { "lang": "go", @@ -62351,7 +62351,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport getPushBasedLogConfiguration --help" }, { "lang": "go", @@ -62434,7 +62434,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport updatePushBasedLogConfiguration --help" }, { "lang": "go", @@ -62517,7 +62517,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport createPushBasedLogConfiguration --help" }, { "lang": "go", @@ -62599,7 +62599,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "source": "atlas api clusters loadSampleDataset --help" }, { "lang": "go", @@ -62675,7 +62675,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "source": "atlas api clusters getSampleDatasetLoadStatus --help" }, { "lang": "go", @@ -62751,7 +62751,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "source": "atlas api serverlessInstances listServerlessInstances --help" }, { "lang": "go", @@ -62833,7 +62833,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "source": "atlas api serverlessInstances createServerlessInstance --help" }, { "lang": "go", @@ -62924,7 +62924,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "source": "atlas api cloudBackups listServerlessBackupRestoreJobs --help" }, { "lang": "go", @@ -63021,7 +63021,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups createServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -63115,7 +63115,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups getServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -63206,7 +63206,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "source": "atlas api cloudBackups listServerlessBackups --help" }, { "lang": "go", @@ -63298,7 +63298,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "source": "atlas api cloudBackups getServerlessBackup --help" }, { "lang": "go", @@ -63377,7 +63377,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor getServerlessAutoIndexing --help" }, { "lang": "go", @@ -63460,7 +63460,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor setServerlessAutoIndexing --help" }, { "lang": "go", @@ -63545,7 +63545,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "source": "atlas api serverlessInstances deleteServerlessInstance --help" }, { "lang": "go", @@ -63628,7 +63628,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "source": "atlas api serverlessInstances getServerlessInstance --help" }, { "lang": "go", @@ -63719,7 +63719,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "source": "atlas api serverlessInstances updateServerlessInstance --help" }, { "lang": "go", @@ -63795,7 +63795,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "source": "atlas api groups listProjectServiceAccounts --help" }, { "lang": "go", @@ -63875,7 +63875,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "source": "atlas api groups createProjectServiceAccount --help" }, { "lang": "go", @@ -63955,7 +63955,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "source": "atlas api groups deleteProjectServiceAccount --help" }, { "lang": "go", @@ -64032,7 +64032,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "source": "atlas api groups getProjectServiceAccount --help" }, { "lang": "go", @@ -64123,7 +64123,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "source": "atlas api groups updateProjectServiceAccount --help" }, { "lang": "go", @@ -64216,7 +64216,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "source": "atlas api groups addProjectServiceAccount --help" }, { "lang": "go", @@ -64289,7 +64289,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "source": "atlas api projects getProjectSettings --help" }, { "lang": "go", @@ -64371,7 +64371,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "source": "atlas api projects updateProjectSettings --help" }, { "lang": "go", @@ -64444,7 +64444,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "source": "atlas api streams listStreamInstances --help" }, { "lang": "go", @@ -64523,7 +64523,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "source": "atlas api streams createStreamInstance --help" }, { "lang": "go", @@ -64605,7 +64605,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "source": "atlas api streams deleteStreamInstance --help" }, { "lang": "go", @@ -64690,7 +64690,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "source": "atlas api streams getStreamInstance --help" }, { "lang": "go", @@ -64784,7 +64784,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "source": "atlas api streams updateStreamInstance --help" }, { "lang": "go", @@ -64893,7 +64893,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "source": "atlas api streams downloadStreamTenantAuditLogs --help" }, { "lang": "go", @@ -64978,7 +64978,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "source": "atlas api streams listStreamConnections --help" }, { "lang": "go", @@ -65069,7 +65069,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "source": "atlas api streams createStreamConnection --help" }, { "lang": "go", @@ -65160,7 +65160,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "source": "atlas api streams deleteStreamConnection --help" }, { "lang": "go", @@ -65243,7 +65243,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "source": "atlas api streams getStreamConnection --help" }, { "lang": "go", @@ -65346,7 +65346,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "source": "atlas api streams updateStreamConnection --help" }, { "lang": "go", @@ -65439,7 +65439,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamProcessor --help" + "source": "atlas api streams createStreamProcessor --help" }, { "lang": "go", @@ -65527,7 +65527,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamProcessor --help" + "source": "atlas api streams deleteStreamProcessor --help" }, { "lang": "go", @@ -65616,7 +65616,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamProcessor --help" + "source": "atlas api streams getStreamProcessor --help" }, { "lang": "go", @@ -65707,7 +65707,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startStreamProcessor --help" + "source": "atlas api streams startStreamProcessor --help" }, { "lang": "go", @@ -65798,7 +65798,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api stopStreamProcessor --help" + "source": "atlas api streams stopStreamProcessor --help" }, { "lang": "go", @@ -65889,7 +65889,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamProcessors --help" + "source": "atlas api streams listStreamProcessors --help" }, { "lang": "go", @@ -65974,7 +65974,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "source": "atlas api teams listProjectTeams --help" }, { "lang": "go", @@ -66066,7 +66066,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "source": "atlas api teams addAllTeamsToProject --help" }, { "lang": "go", @@ -66152,7 +66152,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "source": "atlas api teams removeProjectTeam --help" }, { "lang": "go", @@ -66253,7 +66253,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "source": "atlas api teams updateTeamRoles --help" }, { "lang": "go", @@ -66320,7 +66320,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "source": "atlas api ldapConfiguration getLdapconfiguration --help" }, { "lang": "go", @@ -66399,7 +66399,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "source": "atlas api ldapConfiguration saveLdapconfiguration --help" }, { "lang": "go", @@ -66463,7 +66463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "source": "atlas api x509Authentication disableCustomerManagedX509 --help" }, { "lang": "go", @@ -66530,7 +66530,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "source": "atlas api ldapConfiguration deleteLdapconfiguration --help" }, { "lang": "go", @@ -66611,7 +66611,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "source": "atlas api ldapConfiguration verifyLdapconfiguration --help" }, { "lang": "go", @@ -66690,7 +66690,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "source": "atlas api ldapConfiguration getLdapconfigurationStatus --help" }, { "lang": "go", @@ -66784,7 +66784,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "source": "atlas api projects listProjectUsers --help" }, { "lang": "go", @@ -66866,7 +66866,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "source": "atlas api projects removeProjectUser --help" }, { "lang": "go", @@ -66962,7 +66962,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "source": "atlas api projects updateProjectRoles --help" }, { "lang": "go", @@ -67037,7 +67037,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api migrateProjectToAnotherOrg --help" + "source": "atlas api projects migrateProjectToAnotherOrg --help" }, { "lang": "go", @@ -67127,7 +67127,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "source": "atlas api organizations listOrganizations --help" }, { "lang": "go", @@ -67212,7 +67212,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "source": "atlas api organizations createOrganization --help" }, { "lang": "go", @@ -67288,7 +67288,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "source": "atlas api organizations deleteOrganization --help" }, { "lang": "go", @@ -67362,7 +67362,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "source": "atlas api organizations getOrganization --help" }, { "lang": "go", @@ -67447,7 +67447,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "source": "atlas api organizations renameOrganization --help" }, { "lang": "go", @@ -67527,7 +67527,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "source": "atlas api programmaticApiKeys listApiKeys --help" }, { "lang": "go", @@ -67607,7 +67607,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "source": "atlas api programmaticApiKeys createApiKey --help" }, { "lang": "go", @@ -67690,7 +67690,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "source": "atlas api programmaticApiKeys deleteApiKey --help" }, { "lang": "go", @@ -67771,7 +67771,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "source": "atlas api programmaticApiKeys getApiKey --help" }, { "lang": "go", @@ -67866,7 +67866,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "source": "atlas api programmaticApiKeys updateApiKey --help" }, { "lang": "go", @@ -67958,7 +67958,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "source": "atlas api programmaticApiKeys listApiKeyAccessListsEntries --help" }, { "lang": "go", @@ -68064,7 +68064,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys createApiKeyAccessList --help" }, { "lang": "go", @@ -68164,7 +68164,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "source": "atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help" }, { "lang": "go", @@ -68259,7 +68259,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys getApiKeyAccessList --help" }, { "lang": "go", @@ -68337,7 +68337,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "source": "atlas api invoices createCostExplorerQueryProcess --help" }, { "lang": "go", @@ -68428,7 +68428,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "source": "atlas api invoices createCostExplorerQueryProcess1 --help" }, { "lang": "go", @@ -68543,7 +68543,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "source": "atlas api events listOrganizationEvents --help" }, { "lang": "go", @@ -68634,7 +68634,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "source": "atlas api events getOrganizationEvent --help" }, { "lang": "go", @@ -68707,7 +68707,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "source": "atlas api federatedAuthentication getFederationSettings --help" }, { "lang": "go", @@ -68797,7 +68797,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "source": "atlas api organizations listOrganizationProjects --help" }, { "lang": "go", @@ -68882,7 +68882,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "source": "atlas api organizations listOrganizationInvitations --help" }, { "lang": "go", @@ -68964,7 +68964,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "source": "atlas api organizations updateOrganizationInvitation --help" }, { "lang": "go", @@ -69046,7 +69046,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "source": "atlas api organizations createOrganizationInvitation --help" }, { "lang": "go", @@ -69128,7 +69128,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "source": "atlas api organizations deleteOrganizationInvitation --help" }, { "lang": "go", @@ -69208,7 +69208,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "source": "atlas api organizations getOrganizationInvitation --help" }, { "lang": "go", @@ -69302,7 +69302,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "source": "atlas api organizations updateOrganizationInvitationById --help" }, { "lang": "go", @@ -69460,7 +69460,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "source": "atlas api invoices listInvoices --help" }, { "lang": "go", @@ -69530,7 +69530,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "source": "atlas api invoices listPendingInvoices --help" }, { "lang": "go", @@ -69618,7 +69618,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "source": "atlas api invoices getInvoice --help" }, { "lang": "go", @@ -69699,7 +69699,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "source": "atlas api invoices downloadInvoiceCsv --help" }, { "lang": "go", @@ -69772,7 +69772,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "source": "atlas api cloudMigrationService listSourceProjects --help" }, { "lang": "go", @@ -69839,7 +69839,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "source": "atlas api cloudMigrationService deleteLinkToken --help" }, { "lang": "go", @@ -69918,7 +69918,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "source": "atlas api cloudMigrationService createLinkToken --help" }, { "lang": "go", @@ -69994,7 +69994,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "source": "atlas api organizations listServiceAccounts --help" }, { "lang": "go", @@ -70073,7 +70073,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "source": "atlas api organizations createServiceAccount --help" }, { "lang": "go", @@ -70149,7 +70149,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "source": "atlas api organizations deleteServiceAccount --help" }, { "lang": "go", @@ -70226,7 +70226,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "source": "atlas api organizations getServiceAccount --help" }, { "lang": "go", @@ -70317,7 +70317,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "source": "atlas api organizations updateServiceAccount --help" }, { "lang": "go", @@ -70402,7 +70402,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "source": "atlas api organizations listServiceAccountProjects --help" }, { "lang": "go", @@ -70492,7 +70492,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "source": "atlas api organizations createServiceAccountSecret --help" }, { "lang": "go", @@ -70577,7 +70577,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "source": "atlas api organizations deleteServiceAccountSecret --help" }, { "lang": "go", @@ -70650,7 +70650,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "source": "atlas api organizations getOrganizationSettings --help" }, { "lang": "go", @@ -70732,7 +70732,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "source": "atlas api organizations updateOrganizationSettings --help" }, { "lang": "go", @@ -70818,7 +70818,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "source": "atlas api teams listOrganizationTeams --help" }, { "lang": "go", @@ -70907,7 +70907,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "source": "atlas api teams createTeam --help" }, { "lang": "go", @@ -70993,7 +70993,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "source": "atlas api teams getTeamByName --help" }, { "lang": "go", @@ -71082,7 +71082,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "source": "atlas api teams deleteTeam --help" }, { "lang": "go", @@ -71169,7 +71169,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "source": "atlas api teams getTeamById --help" }, { "lang": "go", @@ -71270,7 +71270,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "source": "atlas api teams renameTeam --help" }, { "lang": "go", @@ -71368,7 +71368,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "source": "atlas api teams listTeamUsers --help" }, { "lang": "go", @@ -71472,7 +71472,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "source": "atlas api teams addTeamUser --help" }, { "lang": "go", @@ -71570,7 +71570,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "source": "atlas api teams removeTeamUser --help" }, { "lang": "go", @@ -71652,7 +71652,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "source": "atlas api organizations listOrganizationUsers --help" }, { "lang": "go", @@ -71737,7 +71737,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "source": "atlas api organizations removeOrganizationUser --help" }, { "lang": "go", @@ -71833,7 +71833,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "source": "atlas api organizations updateOrganizationRoles --help" }, { "lang": "go", @@ -71886,7 +71886,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "source": "atlas api root returnAllControlPlaneIpaddresses --help" }, { "lang": "go", @@ -71964,7 +71964,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUser --help" + "source": "atlas api mongoDbCloudUsers createUser --help" }, { "lang": "go", @@ -72041,7 +72041,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "source": "atlas api mongoDbCloudUsers getUserByUsername --help" }, { "lang": "go", @@ -72120,7 +72120,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUser --help" + "source": "atlas api mongoDbCloudUsers getUser --help" }, { "lang": "go", 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 ad3d61c4c2..57d136c740 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 @@ -30146,7 +30146,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSystemStatus --help + source: atlas api root getSystemStatus --help - label: Go lang: go source: | @@ -30216,7 +30216,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help + source: atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help - label: Go lang: go source: | @@ -30287,7 +30287,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClustersForAllProjects --help + source: atlas api clusters listClustersForAllProjects --help - label: Go lang: go source: | @@ -30358,7 +30358,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listEventTypes --help + source: atlas api events listEventTypes --help - label: Go lang: go source: | @@ -30427,7 +30427,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederationApp --help + source: atlas api federatedAuthentication deleteFederationApp --help - label: Go lang: go source: | @@ -30501,7 +30501,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listConnectedOrgConfigs --help + source: atlas api federatedAuthentication listConnectedOrgConfigs --help - label: Go lang: go source: | @@ -30583,7 +30583,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeConnectedOrgConfig --help + source: atlas api federatedAuthentication removeConnectedOrgConfig --help - label: Go lang: go source: | @@ -30664,7 +30664,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getConnectedOrgConfig --help + source: atlas api federatedAuthentication getConnectedOrgConfig --help - label: Go lang: go source: | @@ -30752,7 +30752,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateConnectedOrgConfig --help + source: atlas api federatedAuthentication updateConnectedOrgConfig --help - label: Go lang: go source: | @@ -30829,7 +30829,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listRoleMappings --help + source: atlas api federatedAuthentication listRoleMappings --help - label: Go lang: go source: | @@ -30908,7 +30908,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRoleMapping --help + source: atlas api federatedAuthentication createRoleMapping --help - label: Go lang: go source: | @@ -30993,7 +30993,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteRoleMapping --help + source: atlas api federatedAuthentication deleteRoleMapping --help - label: Go lang: go source: | @@ -31075,7 +31075,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRoleMapping --help + source: atlas api federatedAuthentication getRoleMapping --help - label: Go lang: go source: | @@ -31164,7 +31164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateRoleMapping --help + source: atlas api federatedAuthentication updateRoleMapping --help - label: Go lang: go source: | @@ -31264,7 +31264,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIdentityProviders --help + source: atlas api federatedAuthentication listIdentityProviders --help - label: Go lang: go source: | @@ -31347,7 +31347,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createIdentityProvider --help + source: atlas api federatedAuthentication createIdentityProvider --help - label: Go lang: go source: | @@ -31428,7 +31428,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteIdentityProvider --help + source: atlas api federatedAuthentication deleteIdentityProvider --help - label: Go lang: go source: | @@ -31508,7 +31508,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProvider --help + source: atlas api federatedAuthentication getIdentityProvider --help - label: Go lang: go source: | @@ -31596,7 +31596,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateIdentityProvider --help + source: atlas api federatedAuthentication updateIdentityProvider --help - label: Go lang: go source: | @@ -31677,7 +31677,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help + source: atlas api federatedAuthentication revokeJwksFromIdentityProvider --help - label: Go lang: go source: | @@ -31749,7 +31749,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProviderMetadata --help + source: atlas api federatedAuthentication getIdentityProviderMetadata --help - label: Go lang: go source: | @@ -31822,7 +31822,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjects --help + source: atlas api projects listProjects --help - label: Go lang: go source: | @@ -31912,7 +31912,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProject --help + source: atlas api projects createProject --help - label: Go lang: go source: | @@ -31987,7 +31987,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProject --help + source: atlas api projects deleteProject --help - label: Go lang: go source: | @@ -32057,7 +32057,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProject --help + source: atlas api projects getProject --help - label: Go lang: go source: | @@ -32138,7 +32138,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProject --help + source: atlas api projects updateProject --help - label: Go lang: go source: | @@ -32223,7 +32223,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToProject --help + source: atlas api projects addUserToProject --help - label: Go lang: go source: | @@ -32302,7 +32302,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectIpAccessLists --help + source: atlas api projectIpAccessList listProjectIpAccessLists --help - label: Go lang: go source: | @@ -32389,7 +32389,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectIpAccessList --help + source: atlas api projectIpAccessList createProjectIpAccessList --help - label: Go lang: go source: | @@ -32480,7 +32480,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectIpAccessList --help + source: atlas api projectIpAccessList deleteProjectIpAccessList --help - label: Go lang: go source: | @@ -32563,7 +32563,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpList --help + source: atlas api projectIpAccessList getProjectIpList --help - label: Go lang: go source: | @@ -32646,7 +32646,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpAccessListStatus --help + source: atlas api projectIpAccessList getProjectIpAccessListStatus --help - label: Go lang: go source: | @@ -32721,7 +32721,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurations --help + source: atlas api alertConfigurations listAlertConfigurations --help - label: Go lang: go source: | @@ -32801,7 +32801,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAlertConfiguration --help + source: atlas api alertConfigurations createAlertConfiguration --help - label: Go lang: go source: | @@ -32887,7 +32887,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAlertConfiguration --help + source: atlas api alertConfigurations deleteAlertConfiguration --help - label: Go lang: go source: | @@ -32970,7 +32970,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlertConfiguration --help + source: atlas api alertConfigurations getAlertConfiguration --help - label: Go lang: go source: | @@ -33062,7 +33062,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAlertConfiguration --help + source: atlas api alertConfigurations toggleAlertConfiguration --help - label: Go lang: go source: | @@ -33160,7 +33160,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAlertConfiguration --help + source: atlas api alertConfigurations updateAlertConfiguration --help - label: Go lang: go source: | @@ -33251,7 +33251,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertsByAlertConfigurationId --help + source: atlas api alerts listAlertsByAlertConfigurationId --help - label: Go lang: go source: | @@ -33337,7 +33337,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlerts --help + source: atlas api alerts listAlerts --help - label: Go lang: go source: | @@ -33420,7 +33420,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlert --help + source: atlas api alerts getAlert --help - label: Go lang: go source: | @@ -33511,7 +33511,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acknowledgeAlert --help + source: atlas api alerts acknowledgeAlert --help - label: Go lang: go source: | @@ -33601,7 +33601,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationsByAlertId --help + source: atlas api alertConfigurations listAlertConfigurationsByAlertId --help - label: Go lang: go source: | @@ -33676,7 +33676,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectApiKeys --help + source: atlas api programmaticApiKeys listProjectApiKeys --help - label: Go lang: go source: | @@ -33751,7 +33751,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectApiKey --help + source: atlas api programmaticApiKeys createProjectApiKey --help - label: Go lang: go source: | @@ -33838,7 +33838,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectApiKey --help + source: atlas api programmaticApiKeys removeProjectApiKey --help - label: Go lang: go source: | @@ -33927,7 +33927,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKeyRoles --help + source: atlas api programmaticApiKeys updateApiKeyRoles --help - label: Go lang: go source: | @@ -34017,7 +34017,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectApiKey --help + source: atlas api programmaticApiKeys addProjectApiKey --help - label: Go lang: go source: | @@ -34090,7 +34090,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAuditingConfiguration --help + source: atlas api auditing getAuditingConfiguration --help - label: Go lang: go source: | @@ -34167,7 +34167,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAuditingConfiguration --help + source: atlas api auditing updateAuditingConfiguration --help - label: Go lang: go source: | @@ -34240,7 +34240,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAWSCustomDNS --help + source: atlas api awsClustersDns getAwscustomDns --help - label: Go lang: go source: | @@ -34315,7 +34315,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAWSCustomDNS --help + source: atlas api awsClustersDns toggleAwscustomDns --help - label: Go lang: go source: | @@ -34391,7 +34391,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listExportBuckets --help + source: atlas api cloudBackups listExportBuckets --help - label: Go lang: go source: | @@ -34509,7 +34509,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createExportBucket --help + source: atlas api cloudBackups createExportBucket --help - label: Go lang: go source: | @@ -34595,7 +34595,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteExportBucket --help + source: atlas api cloudBackups deleteExportBucket --help - label: Go lang: go source: | @@ -34697,7 +34697,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getExportBucket --help + source: atlas api cloudBackups getExportBucket --help - label: Go lang: go source: | @@ -34768,7 +34768,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataProtectionSettings --help + source: atlas api cloudBackups getDataProtectionSettings --help - label: Go lang: go source: | @@ -34854,7 +34854,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDataProtectionSettings --help + source: atlas api cloudBackups updateDataProtectionSettings --help - label: Go lang: go source: | @@ -34927,7 +34927,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderAccessRoles --help + source: atlas api cloudProviderAccess listCloudProviderAccessRoles --help - label: Go lang: go source: | @@ -35005,7 +35005,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCloudProviderAccessRole --help + source: atlas api cloudProviderAccess createCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35095,7 +35095,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35173,7 +35173,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCloudProviderAccessRole --help + source: atlas api cloudProviderAccess getCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35264,7 +35264,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35346,7 +35346,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusters --help + source: atlas api clusters listClusters --help - label: Go lang: go source: | @@ -35557,7 +35557,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCluster --help + source: atlas api clusters createCluster --help - label: Go lang: go source: | @@ -35648,7 +35648,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCluster --help + source: atlas api clusters deleteCluster --help - label: Go lang: go source: | @@ -35729,7 +35729,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCluster --help + source: atlas api clusters getCluster --help - label: Go lang: go source: | @@ -35820,7 +35820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCluster --help + source: atlas api clusters updateCluster --help - label: Go lang: go source: | @@ -35956,7 +35956,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help - label: Go lang: go source: | @@ -36046,7 +36046,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForCluster --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help - label: Go lang: go source: | @@ -36127,7 +36127,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupExportJobs --help + source: atlas api cloudBackups listBackupExportJobs --help - label: Go lang: go source: | @@ -36216,7 +36216,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupExportJob --help + source: atlas api cloudBackups createBackupExportJob --help - label: Go lang: go source: | @@ -36303,7 +36303,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupExportJob --help + source: atlas api cloudBackups getBackupExportJob --help - label: Go lang: go source: | @@ -36384,7 +36384,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupRestoreJobs --help + source: atlas api cloudBackups listBackupRestoreJobs --help - label: Go lang: go source: | @@ -36477,7 +36477,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupRestoreJob --help + source: atlas api cloudBackups createBackupRestoreJob --help - label: Go lang: go source: | @@ -36570,7 +36570,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cancelBackupRestoreJob --help + source: atlas api cloudBackups cancelBackupRestoreJob --help - label: Go lang: go source: | @@ -36656,7 +36656,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupRestoreJob --help + source: atlas api cloudBackups getBackupRestoreJob --help - label: Go lang: go source: | @@ -36735,7 +36735,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllBackupSchedules --help + source: atlas api cloudBackups deleteAllBackupSchedules --help - label: Go lang: go source: | @@ -36812,7 +36812,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupSchedule --help + source: atlas api cloudBackups getBackupSchedule --help - label: Go lang: go source: | @@ -36901,7 +36901,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateBackupSchedule --help + source: atlas api cloudBackups updateBackupSchedule --help - label: Go lang: go source: | @@ -36988,7 +36988,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listReplicaSetBackups --help + source: atlas api cloudBackups listReplicaSetBackups --help - label: Go lang: go source: | @@ -37077,7 +37077,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api takeSnapshot --help + source: atlas api cloudBackups takeSnapshot --help - label: Go lang: go source: | @@ -37170,7 +37170,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteReplicaSetBackup --help + source: atlas api cloudBackups deleteReplicaSetBackup --help - label: Go lang: go source: | @@ -37258,7 +37258,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getReplicaSetBackup --help + source: atlas api cloudBackups getReplicaSetBackup --help - label: Go lang: go source: | @@ -37353,7 +37353,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateSnapshotRetention --help + source: atlas api cloudBackups updateSnapshotRetention --help - label: Go lang: go source: | @@ -37444,7 +37444,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteShardedClusterBackup --help + source: atlas api cloudBackups deleteShardedClusterBackup --help - label: Go lang: go source: | @@ -37532,7 +37532,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getShardedClusterBackup --help + source: atlas api cloudBackups getShardedClusterBackup --help - label: Go lang: go source: | @@ -37612,7 +37612,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listShardedClusterBackups --help + source: atlas api cloudBackups listShardedClusterBackups --help - label: Go lang: go source: | @@ -37705,7 +37705,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadSharedClusterBackup --help + source: atlas api sharedTierSnapshots downloadSharedClusterBackup --help - label: Go lang: go source: | @@ -37800,7 +37800,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -37884,7 +37884,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackupRestoreJobs --help + source: atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help - label: Go lang: go source: | @@ -37973,7 +37973,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -38053,7 +38053,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackups --help + source: atlas api sharedTierSnapshots listSharedClusterBackups --help - label: Go lang: go source: | @@ -38142,7 +38142,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackup --help + source: atlas api sharedTierSnapshots getSharedClusterBackup --help - label: Go lang: go source: | @@ -38224,7 +38224,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupCheckpoints --help + source: atlas api legacyBackup listLegacyBackupCheckpoints --help - label: Go lang: go source: | @@ -38316,7 +38316,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupCheckpoint --help + source: atlas api legacyBackup getLegacyBackupCheckpoint --help - label: Go lang: go source: | @@ -38397,7 +38397,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPinnedNamespaces --help + source: atlas api collectionLevelMetrics getPinnedNamespaces --help - label: Go lang: go source: | @@ -38491,7 +38491,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPatch --help + source: atlas api collectionLevelMetrics pinNamespacesPatch --help - label: Go lang: go source: | @@ -38589,7 +38589,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPut --help + source: atlas api collectionLevelMetrics pinNamespacesPut --help - label: Go lang: go source: | @@ -38681,7 +38681,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api unpinNamespaces --help + source: atlas api collectionLevelMetrics unpinNamespaces --help - label: Go lang: go source: | @@ -38778,7 +38778,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch createAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -38879,7 +38879,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesDeprecated --help + source: atlas api atlasSearch listAtlasSearchIndexesDeprecated --help - label: Go lang: go source: | @@ -38973,7 +38973,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -39064,7 +39064,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch getAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -39166,7 +39166,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch updateAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -39252,7 +39252,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedNamespace --help + source: atlas api globalClusters getManagedNamespace --help - label: Go lang: go source: | @@ -39333,7 +39333,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllCustomZoneMappings --help + source: atlas api globalClusters deleteAllCustomZoneMappings --help - label: Go lang: go source: | @@ -39423,7 +39423,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomZoneMapping --help + source: atlas api globalClusters createCustomZoneMapping --help - label: Go lang: go source: | @@ -39520,7 +39520,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteManagedNamespace --help + source: atlas api globalClusters deleteManagedNamespace --help - label: Go lang: go source: | @@ -39612,7 +39612,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createManagedNamespace --help + source: atlas api globalClusters createManagedNamespace --help - label: Go lang: go source: | @@ -39769,7 +39769,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRollingIndex --help + source: atlas api rollingIndex createRollingIndex --help - label: Go lang: go source: | @@ -39857,7 +39857,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOnlineArchives --help + source: atlas api onlineArchive listOnlineArchives --help - label: Go lang: go source: | @@ -39950,7 +39950,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOnlineArchive --help + source: atlas api onlineArchive createOnlineArchive --help - label: Go lang: go source: | @@ -40046,7 +40046,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOnlineArchive --help + source: atlas api onlineArchive deleteOnlineArchive --help - label: Go lang: go source: | @@ -40139,7 +40139,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOnlineArchive --help + source: atlas api onlineArchive getOnlineArchive --help - label: Go lang: go source: | @@ -40241,7 +40241,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOnlineArchive --help + source: atlas api onlineArchive updateOnlineArchive --help - label: Go lang: go source: | @@ -40353,7 +40353,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadOnlineArchiveQueryLogs --help + source: atlas api onlineArchive downloadOnlineArchiveQueryLogs --help - label: Go lang: go source: | @@ -40440,7 +40440,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api endOutageSimulation --help + source: atlas api clusterOutageSimulation endOutageSimulation --help - label: Go lang: go source: | @@ -40524,7 +40524,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOutageSimulation --help + source: atlas api clusterOutageSimulation getOutageSimulation --help - label: Go lang: go source: | @@ -40613,7 +40613,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startOutageSimulation --help + source: atlas api clusterOutageSimulation startOutageSimulation --help - label: Go lang: go source: | @@ -40700,7 +40700,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterAdvancedConfiguration --help + source: atlas api clusters getClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -40792,7 +40792,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help + source: atlas api clusters updateClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -40872,7 +40872,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api testFailover --help + source: atlas api clusters testFailover --help - label: Go lang: go source: | @@ -40971,7 +40971,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupRestoreJobs --help + source: atlas api legacyBackup listLegacyBackupRestoreJobs --help - label: Go lang: go source: | @@ -41058,7 +41058,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLegacyBackupRestoreJob --help + source: atlas api legacyBackup createLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -41155,7 +41155,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupRestoreJob --help + source: atlas api legacyBackup getLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -41237,7 +41237,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchDeployment --help + source: atlas api atlasSearch deleteAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41316,7 +41316,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchDeployment --help + source: atlas api atlasSearch getAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41404,7 +41404,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchDeployment --help + source: atlas api atlasSearch updateAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41496,7 +41496,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchDeployment --help + source: atlas api atlasSearch createAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41591,7 +41591,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesCluster --help + source: atlas api atlasSearch listAtlasSearchIndexesCluster --help - label: Go lang: go source: | @@ -41682,7 +41682,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndex --help + source: atlas api atlasSearch createAtlasSearchIndex --help - label: Go lang: go source: | @@ -41789,7 +41789,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexes --help + source: atlas api atlasSearch listAtlasSearchIndexes --help - label: Go lang: go source: | @@ -41890,7 +41890,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexByName --help + source: atlas api atlasSearch deleteAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -41990,7 +41990,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexByName --help + source: atlas api atlasSearch getAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -42099,7 +42099,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexByName --help + source: atlas api atlasSearch updateAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -42195,7 +42195,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndex --help + source: atlas api atlasSearch deleteAtlasSearchIndex --help - label: Go lang: go source: | @@ -42292,7 +42292,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndex --help + source: atlas api atlasSearch getAtlasSearchIndex --help - label: Go lang: go source: | @@ -42392,7 +42392,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndex --help + source: atlas api atlasSearch updateAtlasSearchIndex --help - label: Go lang: go source: | @@ -42478,7 +42478,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshotSchedule --help + source: atlas api legacyBackup getLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -42566,7 +42566,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + source: atlas api legacyBackup updateLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -42662,7 +42662,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacySnapshots --help + source: atlas api legacyBackup listLegacySnapshots --help - label: Go lang: go source: | @@ -42752,7 +42752,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLegacySnapshot --help + source: atlas api legacyBackup deleteLegacySnapshot --help - label: Go lang: go source: | @@ -42839,7 +42839,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshot --help + source: atlas api legacyBackup getLegacySnapshot --help - label: Go lang: go source: | @@ -42933,7 +42933,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotRetention --help + source: atlas api legacyBackup updateLegacySnapshotRetention --help - label: Go lang: go source: | @@ -43015,7 +43015,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterStatus --help + source: atlas api clusters getClusterStatus --help - label: Go lang: go source: | @@ -43106,7 +43106,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinFeatureCompatibilityVersion --help + source: atlas api clusters pinFeatureCompatibilityVersion --help - label: Go lang: go source: | @@ -43196,7 +43196,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api unpinFeatureCompatibilityVersion --help + source: atlas api clusters unpinFeatureCompatibilityVersion --help - label: Go lang: go source: | @@ -43313,7 +43313,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostLogs --help + source: atlas api monitoringAndLogs getHostLogs --help - label: Go lang: go source: | @@ -43399,7 +43399,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderRegions --help + source: atlas api clusters listCloudProviderRegions --help - label: Go lang: go source: | @@ -43483,7 +43483,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedCluster --help + source: atlas api clusters upgradeSharedCluster --help - label: Go lang: go source: | @@ -43571,7 +43571,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedClusterToServerless --help + source: atlas api clusters upgradeSharedClusterToServerless --help - label: Go lang: go source: | @@ -43647,7 +43647,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceMetrics --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help - label: Go lang: go source: | @@ -43732,7 +43732,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help + source: atlas api networkPeering listPeeringContainerByCloudProvider --help - label: Go lang: go source: | @@ -43815,7 +43815,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringContainer --help + source: atlas api networkPeering createPeeringContainer --help - label: Go lang: go source: | @@ -43904,7 +43904,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringContainer --help + source: atlas api networkPeering deletePeeringContainer --help - label: Go lang: go source: | @@ -43982,7 +43982,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringContainer --help + source: atlas api networkPeering getPeeringContainer --help - label: Go lang: go source: | @@ -44075,7 +44075,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringContainer --help + source: atlas api networkPeering updatePeeringContainer --help - label: Go lang: go source: | @@ -44151,7 +44151,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainers --help + source: atlas api networkPeering listPeeringContainers --help - label: Go lang: go source: | @@ -44222,7 +44222,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCustomDatabaseRoles --help + source: atlas api customDatabaseRoles listCustomDatabaseRoles --help - label: Go lang: go source: | @@ -44305,7 +44305,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomDatabaseRole --help + source: atlas api customDatabaseRoles createCustomDatabaseRole --help - label: Go lang: go source: | @@ -44388,7 +44388,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCustomDatabaseRole --help + source: atlas api customDatabaseRoles deleteCustomDatabaseRole --help - label: Go lang: go source: | @@ -44464,7 +44464,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCustomDatabaseRole --help + source: atlas api customDatabaseRoles getCustomDatabaseRole --help - label: Go lang: go source: | @@ -44553,7 +44553,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCustomDatabaseRole --help + source: atlas api customDatabaseRoles updateCustomDatabaseRole --help - label: Go lang: go source: | @@ -44637,7 +44637,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFederatedDatabases --help + source: atlas api dataFederation listFederatedDatabases --help - label: Go lang: go source: | @@ -44718,7 +44718,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFederatedDatabase --help + source: atlas api dataFederation createFederatedDatabase --help - label: Go lang: go source: | @@ -44797,7 +44797,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederatedDatabase --help + source: atlas api dataFederation deleteFederatedDatabase --help - label: Go lang: go source: | @@ -44874,7 +44874,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederatedDatabase --help + source: atlas api dataFederation getFederatedDatabase --help - label: Go lang: go source: | @@ -44963,7 +44963,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFederatedDatabase --help + source: atlas api dataFederation updateFederatedDatabase --help - label: Go lang: go source: | @@ -45046,7 +45046,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimits --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimits --help - label: Go lang: go source: | @@ -45139,7 +45139,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOneDataFederationInstanceQueryLimit --help + source: atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help - label: Go lang: go source: | @@ -45232,7 +45232,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimit --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimit --help - label: Go lang: go source: | @@ -45335,7 +45335,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + source: atlas api dataFederation createOneDataFederationQueryLimit --help - label: Go lang: go source: | @@ -45438,7 +45438,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFederatedDatabaseQueryLogs --help + source: atlas api dataFederation downloadFederatedDatabaseQueryLogs --help - label: Go lang: go source: | @@ -45512,7 +45512,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUsers --help + source: atlas api databaseUsers listDatabaseUsers --help - label: Go lang: go source: | @@ -45686,7 +45686,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUser --help + source: atlas api databaseUsers createDatabaseUser --help - label: Go lang: go source: | @@ -45789,7 +45789,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDatabaseUser --help + source: atlas api databaseUsers deleteDatabaseUser --help - label: Go lang: go source: | @@ -45885,7 +45885,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseUser --help + source: atlas api databaseUsers getDatabaseUser --help - label: Go lang: go source: | @@ -45994,7 +45994,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDatabaseUser --help + source: atlas api databaseUsers updateDatabaseUser --help - label: Go lang: go source: | @@ -46078,7 +46078,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUserCertificates --help + source: atlas api x509Authentication listDatabaseUserCertificates --help - label: Go lang: go source: | @@ -46176,7 +46176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUserCertificate --help + source: atlas api x509Authentication createDatabaseUserCertificate --help - label: Go lang: go source: | @@ -46295,7 +46295,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByClusterName --help + source: atlas api accessTracking listAccessLogsByClusterName --help - label: Go lang: go source: | @@ -46407,7 +46407,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByHostname --help + source: atlas api accessTracking listAccessLogsByHostname --help - label: Go lang: go source: | @@ -46479,7 +46479,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help - label: Go lang: go source: | @@ -46572,7 +46572,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help - label: Go lang: go source: | @@ -46653,7 +46653,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help - label: Go lang: go source: | @@ -46736,7 +46736,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -46833,7 +46833,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help - label: Go lang: go source: | @@ -46918,7 +46918,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -47044,7 +47044,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectEvents --help + source: atlas api events listProjectEvents --help - label: Go lang: go source: | @@ -47133,7 +47133,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectEvent --help + source: atlas api events getProjectEvent --help - label: Go lang: go source: | @@ -47204,7 +47204,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listMetricTypes --help + source: atlas api monitoringAndLogs listMetricTypes --help - label: Go lang: go source: | @@ -47305,7 +47305,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIndexMetrics --help + source: atlas api monitoringAndLogs getIndexMetrics --help - label: Go lang: go source: | @@ -47405,7 +47405,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIndexMetrics --help + source: atlas api monitoringAndLogs listIndexMetrics --help - label: Go lang: go source: | @@ -47504,7 +47504,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMeasurements --help + source: atlas api monitoringAndLogs getMeasurements --help - label: Go lang: go source: | @@ -47580,7 +47580,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listThirdPartyIntegrations --help + source: atlas api thirdPartyIntegrations listThirdPartyIntegrations --help - label: Go lang: go source: | @@ -47671,7 +47671,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help - label: Go lang: go source: | @@ -47761,7 +47761,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations getThirdPartyIntegration --help - label: Go lang: go source: | @@ -47863,7 +47863,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations createThirdPartyIntegration --help - label: Go lang: go source: | @@ -47967,7 +47967,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations updateThirdPartyIntegration --help - label: Go lang: go source: | @@ -48049,7 +48049,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectInvitations --help + source: atlas api projects listProjectInvitations --help - label: Go lang: go source: | @@ -48130,7 +48130,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitation --help + source: atlas api projects updateProjectInvitation --help - label: Go lang: go source: | @@ -48211,7 +48211,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectInvitation --help + source: atlas api projects createProjectInvitation --help - label: Go lang: go source: | @@ -48294,7 +48294,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectInvitation --help + source: atlas api projects deleteProjectInvitation --help - label: Go lang: go source: | @@ -48375,7 +48375,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectInvitation --help + source: atlas api projects getProjectInvitation --help - label: Go lang: go source: | @@ -48464,7 +48464,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitationById --help + source: atlas api projects updateProjectInvitationById --help - label: Go lang: go source: | @@ -48540,7 +48540,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllIPAddresses --help + source: atlas api projects returnAllIpaddresses --help - label: Go lang: go source: | @@ -48617,7 +48617,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectLimits --help + source: atlas api projects listProjectLimits --help - label: Go lang: go source: | @@ -48726,7 +48726,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectLimit --help + source: atlas api projects deleteProjectLimit --help - label: Go lang: go source: | @@ -48836,7 +48836,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLimit --help + source: atlas api projects getProjectLimit --help - label: Go lang: go source: | @@ -48956,7 +48956,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setProjectLimit --help + source: atlas api projects setProjectLimit --help - label: Go lang: go source: | @@ -49050,7 +49050,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushMigration --help + source: atlas api cloudMigrationService createPushMigration --help - label: Go lang: go source: | @@ -49128,7 +49128,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushMigration --help + source: atlas api cloudMigrationService getPushMigration --help - label: Go lang: go source: | @@ -49202,7 +49202,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cutoverMigration --help + source: atlas api cloudMigrationService cutoverMigration --help - label: Go lang: go source: | @@ -49289,7 +49289,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateMigration --help + source: atlas api cloudMigrationService validateMigration --help - label: Go lang: go source: | @@ -49377,7 +49377,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getValidationStatus --help + source: atlas api cloudMigrationService getValidationStatus --help - label: Go lang: go source: | @@ -49445,7 +49445,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resetMaintenanceWindow --help + source: atlas api maintenanceWindows resetMaintenanceWindow --help - label: Go lang: go source: | @@ -49513,7 +49513,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMaintenanceWindow --help + source: atlas api maintenanceWindows getMaintenanceWindow --help - label: Go lang: go source: | @@ -49589,7 +49589,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateMaintenanceWindow --help + source: atlas api maintenanceWindows updateMaintenanceWindow --help - label: Go lang: go source: | @@ -49661,7 +49661,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help + source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help - label: Go lang: go source: | @@ -49733,7 +49733,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deferMaintenanceWindow --help + source: atlas api maintenanceWindows deferMaintenanceWindow --help - label: Go lang: go source: | @@ -49806,7 +49806,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedSlowMs --help + source: atlas api performanceAdvisor getManagedSlowMs --help - label: Go lang: go source: | @@ -49875,7 +49875,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableSlowOperationThresholding --help + source: atlas api performanceAdvisor disableSlowOperationThresholding --help - label: Go lang: go source: | @@ -49944,7 +49944,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api enableSlowOperationThresholding --help + source: atlas api performanceAdvisor enableSlowOperationThresholding --help - label: Go lang: go source: | @@ -50058,7 +50058,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLTSVersions --help + source: atlas api projects getProjectLtsversions --help - label: Go lang: go source: | @@ -50142,7 +50142,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringConnections --help + source: atlas api networkPeering listPeeringConnections --help - label: Go lang: go source: | @@ -50226,7 +50226,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringConnection --help + source: atlas api networkPeering createPeeringConnection --help - label: Go lang: go source: | @@ -50310,7 +50310,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringConnection --help + source: atlas api networkPeering deletePeeringConnection --help - label: Go lang: go source: | @@ -50389,7 +50389,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringConnection --help + source: atlas api networkPeering getPeeringConnection --help - label: Go lang: go source: | @@ -50479,7 +50479,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringConnection --help + source: atlas api networkPeering updatePeeringConnection --help - label: Go lang: go source: | @@ -50555,7 +50555,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelines --help + source: atlas api dataLakePipelines listPipelines --help - label: Go lang: go source: | @@ -50633,7 +50633,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPipeline --help + source: atlas api dataLakePipelines createPipeline --help - label: Go lang: go source: | @@ -50716,7 +50716,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipeline --help + source: atlas api dataLakePipelines deletePipeline --help - label: Go lang: go source: | @@ -50795,7 +50795,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipeline --help + source: atlas api dataLakePipelines getPipeline --help - label: Go lang: go source: | @@ -50884,7 +50884,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePipeline --help + source: atlas api dataLakePipelines updatePipeline --help - label: Go lang: go source: | @@ -50970,7 +50970,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSchedules --help + source: atlas api dataLakePipelines listPipelineSchedules --help - label: Go lang: go source: | @@ -51060,7 +51060,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSnapshots --help + source: atlas api dataLakePipelines listPipelineSnapshots --help - label: Go lang: go source: | @@ -51140,7 +51140,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pausePipeline --help + source: atlas api dataLakePipelines pausePipeline --help - label: Go lang: go source: | @@ -51224,7 +51224,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resumePipeline --help + source: atlas api dataLakePipelines resumePipeline --help - label: Go lang: go source: | @@ -51318,7 +51318,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineRuns --help + source: atlas api dataLakePipelines listPipelineRuns --help - label: Go lang: go source: | @@ -51408,7 +51408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipelineRunDataset --help + source: atlas api dataLakePipelines deletePipelineRunDataset --help - label: Go lang: go source: | @@ -51497,7 +51497,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipelineRun --help + source: atlas api dataLakePipelines getPipelineRun --help - label: Go lang: go source: | @@ -51584,7 +51584,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api triggerSnapshotIngestion --help + source: atlas api dataLakePipelines triggerSnapshotIngestion --help - label: Go lang: go source: | @@ -51670,7 +51670,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateEndpointServices --help + source: atlas api privateEndpointServices listPrivateEndpointServices --help - label: Go lang: go source: | @@ -51759,7 +51759,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpointService --help + source: atlas api privateEndpointServices deletePrivateEndpointService --help - label: Go lang: go source: | @@ -51849,7 +51849,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpointService --help + source: atlas api privateEndpointServices getPrivateEndpointService --help - label: Go lang: go source: | @@ -51951,7 +51951,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpoint --help + source: atlas api privateEndpointServices createPrivateEndpoint --help - label: Go lang: go source: | @@ -52051,7 +52051,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpoint --help + source: atlas api privateEndpointServices deletePrivateEndpoint --help - label: Go lang: go source: | @@ -52148,7 +52148,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpoint --help + source: atlas api privateEndpointServices getPrivateEndpoint --help - label: Go lang: go source: | @@ -52227,7 +52227,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpointService --help + source: atlas api privateEndpointServices createPrivateEndpointService --help - label: Go lang: go source: | @@ -52302,7 +52302,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -52379,7 +52379,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -52463,7 +52463,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessPrivateEndpoints --help + source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help - label: Go lang: go source: | @@ -52553,7 +52553,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52644,7 +52644,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52730,7 +52730,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52823,7 +52823,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -52900,7 +52900,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + source: atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help - label: Go lang: go source: | @@ -52981,7 +52981,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disablePeering --help + source: atlas api networkPeering disablePeering --help - label: Go lang: go source: | @@ -53061,7 +53061,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDataFederationPrivateEndpoints --help + source: atlas api dataFederation listDataFederationPrivateEndpoints --help - label: Go lang: go source: | @@ -53157,7 +53157,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help + source: atlas api dataFederation createDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -53241,7 +53241,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help + source: atlas api dataFederation deleteDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -53322,7 +53322,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataFederationPrivateEndpoint --help + source: atlas api dataFederation getDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -53394,7 +53394,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasProcesses --help + source: atlas api monitoringAndLogs listAtlasProcesses --help - label: Go lang: go source: | @@ -53471,7 +53471,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasProcess --help + source: atlas api monitoringAndLogs getAtlasProcess --help - label: Go lang: go source: | @@ -53583,7 +53583,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help - label: Go lang: go source: | @@ -53655,7 +53655,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForHost --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help - label: Go lang: go source: | @@ -53735,7 +53735,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabases --help + source: atlas api monitoringAndLogs listDatabases --help - label: Go lang: go source: | @@ -53818,7 +53818,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabase --help + source: atlas api monitoringAndLogs getDatabase --help - label: Go lang: go source: | @@ -53927,7 +53927,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseMeasurements --help + source: atlas api monitoringAndLogs getDatabaseMeasurements --help - label: Go lang: go source: | @@ -54007,7 +54007,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskPartitions --help + source: atlas api monitoringAndLogs listDiskPartitions --help - label: Go lang: go source: | @@ -54089,7 +54089,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskMeasurements --help + source: atlas api monitoringAndLogs listDiskMeasurements --help - label: Go lang: go source: | @@ -54214,7 +54214,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDiskMeasurements --help + source: atlas api monitoringAndLogs getDiskMeasurements --help - label: Go lang: go source: | @@ -54450,7 +54450,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostMeasurements --help + source: atlas api monitoringAndLogs getHostMeasurements --help - label: Go lang: go source: | @@ -54547,7 +54547,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueryNamespaces --help + source: atlas api performanceAdvisor listSlowQueryNamespaces --help - label: Go lang: go source: | @@ -54661,7 +54661,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueries --help + source: atlas api performanceAdvisor listSlowQueries --help - label: Go lang: go source: | @@ -54782,7 +54782,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSuggestedIndexes --help + source: atlas api performanceAdvisor listSuggestedIndexes --help - label: Go lang: go source: | @@ -54855,7 +54855,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport deletePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -54927,7 +54927,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport getPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -55007,7 +55007,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport updatePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -55091,7 +55091,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport createPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -55176,7 +55176,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api loadSampleDataset --help + source: atlas api clusters loadSampleDataset --help - label: Go lang: go source: | @@ -55257,7 +55257,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSampleDatasetLoadStatus --help + source: atlas api clusters getSampleDatasetLoadStatus --help - label: Go lang: go source: | @@ -55329,7 +55329,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessInstances --help + source: atlas api serverlessInstances listServerlessInstances --help - label: Go lang: go source: | @@ -55408,7 +55408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessInstance --help + source: atlas api serverlessInstances createServerlessInstance --help - label: Go lang: go source: | @@ -55495,7 +55495,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackupRestoreJobs --help + source: atlas api cloudBackups listServerlessBackupRestoreJobs --help - label: Go lang: go source: | @@ -55585,7 +55585,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + source: atlas api cloudBackups createServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -55678,7 +55678,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackupRestoreJob --help + source: atlas api cloudBackups getServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -55761,7 +55761,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackups --help + source: atlas api cloudBackups listServerlessBackups --help - label: Go lang: go source: | @@ -55850,7 +55850,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackup --help + source: atlas api cloudBackups getServerlessBackup --help - label: Go lang: go source: | @@ -55928,7 +55928,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessAutoIndexing --help + source: atlas api performanceAdvisor getServerlessAutoIndexing --help - label: Go lang: go source: | @@ -56010,7 +56010,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setServerlessAutoIndexing --help + source: atlas api performanceAdvisor setServerlessAutoIndexing --help - label: Go lang: go source: | @@ -56096,7 +56096,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessInstance --help + source: atlas api serverlessInstances deleteServerlessInstance --help - label: Go lang: go source: | @@ -56177,7 +56177,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessInstance --help + source: atlas api serverlessInstances getServerlessInstance --help - label: Go lang: go source: | @@ -56263,7 +56263,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessInstance --help + source: atlas api serverlessInstances updateServerlessInstance --help - label: Go lang: go source: | @@ -56340,7 +56340,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccounts --help + source: atlas api groups listProjectServiceAccounts --help - label: Go lang: go source: | @@ -56418,7 +56418,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccount --help + source: atlas api groups createProjectServiceAccount --help - label: Go lang: go source: | @@ -56500,7 +56500,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccount --help + source: atlas api groups deleteProjectServiceAccount --help - label: Go lang: go source: | @@ -56576,7 +56576,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectServiceAccount --help + source: atlas api groups getProjectServiceAccount --help - label: Go lang: go source: | @@ -56661,7 +56661,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectServiceAccount --help + source: atlas api groups updateProjectServiceAccount --help - label: Go lang: go source: | @@ -56752,7 +56752,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectServiceAccount --help + source: atlas api groups addProjectServiceAccount --help - label: Go lang: go source: | @@ -56829,7 +56829,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectSettings --help + source: atlas api projects getProjectSettings --help - label: Go lang: go source: | @@ -56908,7 +56908,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectSettings --help + source: atlas api projects updateProjectSettings --help - label: Go lang: go source: | @@ -56983,7 +56983,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamInstances --help + source: atlas api streams listStreamInstances --help - label: Go lang: go source: | @@ -57060,7 +57060,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstance --help + source: atlas api streams createStreamInstance --help - label: Go lang: go source: | @@ -57143,7 +57143,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamInstance --help + source: atlas api streams deleteStreamInstance --help - label: Go lang: go source: | @@ -57225,7 +57225,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamInstance --help + source: atlas api streams getStreamInstance --help - label: Go lang: go source: | @@ -57312,7 +57312,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamInstance --help + source: atlas api streams updateStreamInstance --help - label: Go lang: go source: | @@ -57416,7 +57416,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadStreamTenantAuditLogs --help + source: atlas api streams downloadStreamTenantAuditLogs --help - label: Go lang: go source: | @@ -57497,7 +57497,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamConnections --help + source: atlas api streams listStreamConnections --help - label: Go lang: go source: | @@ -57582,7 +57582,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamConnection --help + source: atlas api streams createStreamConnection --help - label: Go lang: go source: | @@ -57671,7 +57671,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamConnection --help + source: atlas api streams deleteStreamConnection --help - label: Go lang: go source: | @@ -57752,7 +57752,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamConnection --help + source: atlas api streams getStreamConnection --help - label: Go lang: go source: | @@ -57845,7 +57845,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamConnection --help + source: atlas api streams updateStreamConnection --help - label: Go lang: go source: | @@ -57935,7 +57935,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamProcessor --help + source: atlas api streams createStreamProcessor --help - label: Go lang: go source: | @@ -58022,7 +58022,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamProcessor --help + source: atlas api streams deleteStreamProcessor --help - label: Go lang: go source: | @@ -58106,7 +58106,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamProcessor --help + source: atlas api streams getStreamProcessor --help - label: Go lang: go source: | @@ -58191,7 +58191,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startStreamProcessor --help + source: atlas api streams startStreamProcessor --help - label: Go lang: go source: | @@ -58280,7 +58280,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api stopStreamProcessor --help + source: atlas api streams stopStreamProcessor --help - label: Go lang: go source: | @@ -58366,7 +58366,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamProcessors --help + source: atlas api streams listStreamProcessors --help - label: Go lang: go source: | @@ -58444,7 +58444,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectTeams --help + source: atlas api teams listProjectTeams --help - label: Go lang: go source: | @@ -58530,7 +58530,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addAllTeamsToProject --help + source: atlas api teams addAllTeamsToProject --help - label: Go lang: go source: | @@ -58618,7 +58618,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectTeam --help + source: atlas api teams removeProjectTeam --help - label: Go lang: go source: | @@ -58711,7 +58711,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateTeamRoles --help + source: atlas api teams updateTeamRoles --help - label: Go lang: go source: | @@ -58784,7 +58784,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfiguration --help + source: atlas api ldapConfiguration getLdapconfiguration --help - label: Go lang: go source: | @@ -58864,7 +58864,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api saveLDAPConfiguration --help + source: atlas api ldapConfiguration saveLdapconfiguration --help - label: Go lang: go source: | @@ -58939,7 +58939,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableCustomerManagedX509 --help + source: atlas api x509Authentication disableCustomerManagedX509 --help - label: Go lang: go source: | @@ -59008,7 +59008,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLDAPConfiguration --help + source: atlas api ldapConfiguration deleteLdapconfiguration --help - label: Go lang: go source: | @@ -59086,7 +59086,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyLDAPConfiguration --help + source: atlas api ldapConfiguration verifyLdapconfiguration --help - label: Go lang: go source: | @@ -59168,7 +59168,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfigurationStatus --help + source: atlas api ldapConfiguration getLdapconfigurationStatus --help - label: Go lang: go source: | @@ -59252,7 +59252,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api projects listProjectUsers --help - label: Go lang: go source: | @@ -59332,7 +59332,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api projects removeProjectUser --help - label: Go lang: go source: | @@ -59421,7 +59421,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectRoles --help + source: atlas api projects updateProjectRoles --help - label: Go lang: go source: | @@ -59500,7 +59500,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api migrateProjectToAnotherOrg --help + source: atlas api projects migrateProjectToAnotherOrg --help - label: Go lang: go source: | @@ -59586,7 +59586,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectByName --help + source: atlas api projects getProjectByName --help - label: Go lang: go source: | @@ -59668,7 +59668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizations --help + source: atlas api organizations listOrganizations --help - label: Go lang: go source: | @@ -59750,7 +59750,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganization --help + source: atlas api organizations createOrganization --help - label: Go lang: go source: | @@ -59835,7 +59835,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganization --help + source: atlas api organizations deleteOrganization --help - label: Go lang: go source: | @@ -59909,7 +59909,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganization --help + source: atlas api organizations getOrganization --help - label: Go lang: go source: | @@ -59990,7 +59990,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameOrganization --help + source: atlas api organizations renameOrganization --help - label: Go lang: go source: | @@ -60069,7 +60069,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeys --help + source: atlas api programmaticApiKeys listApiKeys --help - label: Go lang: go source: | @@ -60147,7 +60147,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKey --help + source: atlas api programmaticApiKeys createApiKey --help - label: Go lang: go source: | @@ -60232,7 +60232,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKey --help + source: atlas api programmaticApiKeys deleteApiKey --help - label: Go lang: go source: | @@ -60312,7 +60312,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKey --help + source: atlas api programmaticApiKeys getApiKey --help - label: Go lang: go source: | @@ -60401,7 +60401,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKey --help + source: atlas api programmaticApiKeys updateApiKey --help - label: Go lang: go source: | @@ -60489,7 +60489,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeyAccessListsEntries --help + source: atlas api programmaticApiKeys listApiKeyAccessListsEntries --help - label: Go lang: go source: | @@ -60582,7 +60582,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKeyAccessList --help + source: atlas api programmaticApiKeys createApiKeyAccessList --help - label: Go lang: go source: | @@ -60679,7 +60679,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKeyAccessListEntry --help + source: atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help - label: Go lang: go source: | @@ -60769,7 +60769,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKeyAccessList --help + source: atlas api programmaticApiKeys getApiKeyAccessList --help - label: Go lang: go source: | @@ -60846,7 +60846,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess --help + source: atlas api invoices createCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -60937,7 +60937,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess_1 --help + source: atlas api invoices createCostExplorerQueryProcess1 --help - label: Go lang: go source: | @@ -61041,7 +61041,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationEvents --help + source: atlas api events listOrganizationEvents --help - label: Go lang: go source: | @@ -61130,7 +61130,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationEvent --help + source: atlas api events getOrganizationEvent --help - label: Go lang: go source: | @@ -61203,7 +61203,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederationSettings --help + source: atlas api federatedAuthentication getFederationSettings --help - label: Go lang: go source: | @@ -61292,7 +61292,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationProjects --help + source: atlas api organizations listOrganizationProjects --help - label: Go lang: go source: | @@ -61373,7 +61373,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationInvitations --help + source: atlas api organizations listOrganizationInvitations --help - label: Go lang: go source: | @@ -61452,7 +61452,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitation --help + source: atlas api organizations updateOrganizationInvitation --help - label: Go lang: go source: | @@ -61535,7 +61535,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationInvitation --help + source: atlas api organizations createOrganizationInvitation --help - label: Go lang: go source: | @@ -61618,7 +61618,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganizationInvitation --help + source: atlas api organizations deleteOrganizationInvitation --help - label: Go lang: go source: | @@ -61698,7 +61698,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationInvitation --help + source: atlas api organizations getOrganizationInvitation --help - label: Go lang: go source: | @@ -61786,7 +61786,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitationById --help + source: atlas api organizations updateOrganizationInvitationById --help - label: Go lang: go source: | @@ -61923,7 +61923,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listInvoices --help + source: atlas api invoices listInvoices --help - label: Go lang: go source: | @@ -62009,7 +62009,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getInvoice --help + source: atlas api invoices getInvoice --help - label: Go lang: go source: | @@ -62096,7 +62096,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadInvoiceCSV --help + source: atlas api invoices downloadInvoiceCsv --help - label: Go lang: go source: | @@ -62167,7 +62167,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPendingInvoices --help + source: atlas api invoices listPendingInvoices --help - label: Go lang: go source: | @@ -62240,7 +62240,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSourceProjects --help + source: atlas api cloudMigrationService listSourceProjects --help - label: Go lang: go source: | @@ -62310,7 +62310,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLinkToken --help + source: atlas api cloudMigrationService deleteLinkToken --help - label: Go lang: go source: | @@ -62387,7 +62387,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLinkToken --help + source: atlas api cloudMigrationService createLinkToken --help - label: Go lang: go source: | @@ -62464,7 +62464,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccounts --help + source: atlas api organizations listServiceAccounts --help - label: Go lang: go source: | @@ -62541,7 +62541,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccount --help + source: atlas api organizations createServiceAccount --help - label: Go lang: go source: | @@ -62620,7 +62620,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccount --help + source: atlas api organizations deleteServiceAccount --help - label: Go lang: go source: | @@ -62696,7 +62696,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServiceAccount --help + source: atlas api organizations getServiceAccount --help - label: Go lang: go source: | @@ -62781,7 +62781,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServiceAccount --help + source: atlas api organizations updateServiceAccount --help - label: Go lang: go source: | @@ -62864,7 +62864,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountProjects --help + source: atlas api organizations listServiceAccountProjects --help - label: Go lang: go source: | @@ -62948,7 +62948,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountSecret --help + source: atlas api organizations createServiceAccountSecret --help - label: Go lang: go source: | @@ -63033,7 +63033,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountSecret --help + source: atlas api organizations deleteServiceAccountSecret --help - label: Go lang: go source: | @@ -63106,7 +63106,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationSettings --help + source: atlas api organizations getOrganizationSettings --help - label: Go lang: go source: | @@ -63185,7 +63185,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationSettings --help + source: atlas api organizations updateOrganizationSettings --help - label: Go lang: go source: | @@ -63268,7 +63268,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationTeams --help + source: atlas api teams listOrganizationTeams --help - label: Go lang: go source: | @@ -63352,7 +63352,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createTeam --help + source: atlas api teams createTeam --help - label: Go lang: go source: | @@ -63441,7 +63441,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteTeam --help + source: atlas api teams deleteTeam --help - label: Go lang: go source: | @@ -63525,7 +63525,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamById --help + source: atlas api teams getTeamById --help - label: Go lang: go source: | @@ -63618,7 +63618,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameTeam --help + source: atlas api teams renameTeam --help - label: Go lang: go source: | @@ -63711,7 +63711,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api teams listTeamUsers --help - label: Go lang: go source: | @@ -63806,7 +63806,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addTeamUser --help + source: atlas api teams addTeamUser --help - label: Go lang: go source: | @@ -63902,7 +63902,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeTeamUser --help + source: atlas api teams removeTeamUser --help - label: Go lang: go source: | @@ -63984,7 +63984,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamByName --help + source: atlas api teams getTeamByName --help - label: Go lang: go source: | @@ -64060,7 +64060,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api organizations listOrganizationUsers --help - label: Go lang: go source: | @@ -64143,7 +64143,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api organizations removeOrganizationUser --help - label: Go lang: go source: | @@ -64232,7 +64232,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationRoles --help + source: atlas api organizations updateOrganizationRoles --help - label: Go lang: go source: | @@ -64299,7 +64299,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help + source: atlas api root returnAllControlPlaneIpaddresses --help - label: Go lang: go source: | @@ -64381,7 +64381,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUser --help + source: atlas api mongoDbCloudUsers createUser --help - label: Go lang: go source: | @@ -64464,7 +64464,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUser --help + source: atlas api mongoDbCloudUsers getUser --help - label: Go lang: go source: | @@ -64541,7 +64541,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUserByUsername --help + source: atlas api mongoDbCloudUsers getUserByUsername --help - label: Go lang: go source: | 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 3027b26b6d..89395a0f3e 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 @@ -37329,7 +37329,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSystemStatus --help" + "source": "atlas api root getSystemStatus --help" }, { "lang": "go", @@ -37396,7 +37396,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationMatchersFieldNames --help" + "source": "atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help" }, { "lang": "go", @@ -37469,7 +37469,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClustersForAllProjects --help" + "source": "atlas api clusters listClustersForAllProjects --help" }, { "lang": "go", @@ -37542,7 +37542,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listEventTypes --help" + "source": "atlas api events listEventTypes --help" }, { "lang": "go", @@ -37606,7 +37606,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederationApp --help" + "source": "atlas api federatedAuthentication deleteFederationApp --help" }, { "lang": "go", @@ -37682,7 +37682,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listConnectedOrgConfigs --help" + "source": "atlas api federatedAuthentication listConnectedOrgConfigs --help" }, { "lang": "go", @@ -37765,7 +37765,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication removeConnectedOrgConfig --help" }, { "lang": "go", @@ -37846,7 +37846,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication getConnectedOrgConfig --help" }, { "lang": "go", @@ -37938,7 +37938,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateConnectedOrgConfig --help" + "source": "atlas api federatedAuthentication updateConnectedOrgConfig --help" }, { "lang": "go", @@ -38011,7 +38011,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listRoleMappings --help" + "source": "atlas api federatedAuthentication listRoleMappings --help" }, { "lang": "go", @@ -38093,7 +38093,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRoleMapping --help" + "source": "atlas api federatedAuthentication createRoleMapping --help" }, { "lang": "go", @@ -38176,7 +38176,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteRoleMapping --help" + "source": "atlas api federatedAuthentication deleteRoleMapping --help" }, { "lang": "go", @@ -38260,7 +38260,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRoleMapping --help" + "source": "atlas api federatedAuthentication getRoleMapping --help" }, { "lang": "go", @@ -38355,7 +38355,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateRoleMapping --help" + "source": "atlas api federatedAuthentication updateRoleMapping --help" }, { "lang": "go", @@ -38463,7 +38463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIdentityProviders --help" + "source": "atlas api federatedAuthentication listIdentityProviders --help" }, { "lang": "go", @@ -38545,7 +38545,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createIdentityProvider --help" + "source": "atlas api federatedAuthentication createIdentityProvider --help" }, { "lang": "go", @@ -38622,7 +38622,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteIdentityProvider --help" + "source": "atlas api federatedAuthentication deleteIdentityProvider --help" }, { "lang": "go", @@ -38703,7 +38703,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProvider --help" + "source": "atlas api federatedAuthentication getIdentityProvider --help" }, { "lang": "go", @@ -38792,7 +38792,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateIdentityProvider --help" + "source": "atlas api federatedAuthentication updateIdentityProvider --help" }, { "lang": "go", @@ -38869,7 +38869,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api revokeJwksFromIdentityProvider --help" + "source": "atlas api federatedAuthentication revokeJwksFromIdentityProvider --help" }, { "lang": "go", @@ -38939,7 +38939,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIdentityProviderMetadata --help" + "source": "atlas api federatedAuthentication getIdentityProviderMetadata --help" }, { "lang": "go", @@ -39015,7 +39015,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjects --help" + "source": "atlas api projects listProjects --help" }, { "lang": "go", @@ -39111,7 +39111,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProject --help" + "source": "atlas api projects createProject --help" }, { "lang": "go", @@ -39195,7 +39195,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectByName --help" + "source": "atlas api projects getProjectByName --help" }, { "lang": "go", @@ -39265,7 +39265,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProject --help" + "source": "atlas api projects deleteProject --help" }, { "lang": "go", @@ -39333,7 +39333,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProject --help" + "source": "atlas api projects getProject --help" }, { "lang": "go", @@ -39418,7 +39418,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProject --help" + "source": "atlas api projects updateProject --help" }, { "lang": "go", @@ -39504,7 +39504,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addUserToProject --help" + "source": "atlas api projects addUserToProject --help" }, { "lang": "go", @@ -39584,7 +39584,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectIpAccessLists --help" + "source": "atlas api projectIpAccessList listProjectIpAccessLists --help" }, { "lang": "go", @@ -39682,7 +39682,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectIpAccessList --help" + "source": "atlas api projectIpAccessList createProjectIpAccessList --help" }, { "lang": "go", @@ -39767,7 +39767,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectIpAccessList --help" + "source": "atlas api projectIpAccessList deleteProjectIpAccessList --help" }, { "lang": "go", @@ -39853,7 +39853,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpList --help" + "source": "atlas api projectIpAccessList getProjectIpList --help" }, { "lang": "go", @@ -39940,7 +39940,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectIpAccessListStatus --help" + "source": "atlas api projectIpAccessList getProjectIpAccessListStatus --help" }, { "lang": "go", @@ -40016,7 +40016,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurations --help" + "source": "atlas api alertConfigurations listAlertConfigurations --help" }, { "lang": "go", @@ -40095,7 +40095,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAlertConfiguration --help" + "source": "atlas api alertConfigurations createAlertConfiguration --help" }, { "lang": "go", @@ -40175,7 +40175,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAlertConfiguration --help" + "source": "atlas api alertConfigurations deleteAlertConfiguration --help" }, { "lang": "go", @@ -40256,7 +40256,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlertConfiguration --help" + "source": "atlas api alertConfigurations getAlertConfiguration --help" }, { "lang": "go", @@ -40348,7 +40348,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAlertConfiguration --help" + "source": "atlas api alertConfigurations toggleAlertConfiguration --help" }, { "lang": "go", @@ -40443,7 +40443,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAlertConfiguration --help" + "source": "atlas api alertConfigurations updateAlertConfiguration --help" }, { "lang": "go", @@ -40535,7 +40535,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertsByAlertConfigurationId --help" + "source": "atlas api alerts listAlertsByAlertConfigurationId --help" }, { "lang": "go", @@ -40627,7 +40627,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlerts --help" + "source": "atlas api alerts listAlerts --help" }, { "lang": "go", @@ -40709,7 +40709,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAlert --help" + "source": "atlas api alerts getAlert --help" }, { "lang": "go", @@ -40803,7 +40803,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api acknowledgeAlert --help" + "source": "atlas api alerts acknowledgeAlert --help" }, { "lang": "go", @@ -40894,7 +40894,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAlertConfigurationsByAlertId --help" + "source": "atlas api alertConfigurations listAlertConfigurationsByAlertId --help" }, { "lang": "go", @@ -40974,7 +40974,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectApiKeys --help" + "source": "atlas api programmaticApiKeys listProjectApiKeys --help" }, { "lang": "go", @@ -41050,7 +41050,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectApiKey --help" + "source": "atlas api programmaticApiKeys createProjectApiKey --help" }, { "lang": "go", @@ -41136,7 +41136,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectApiKey --help" + "source": "atlas api programmaticApiKeys removeProjectApiKey --help" }, { "lang": "go", @@ -41236,7 +41236,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKeyRoles --help" + "source": "atlas api programmaticApiKeys updateApiKeyRoles --help" }, { "lang": "go", @@ -41327,7 +41327,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectApiKey --help" + "source": "atlas api programmaticApiKeys addProjectApiKey --help" }, { "lang": "go", @@ -41394,7 +41394,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAuditingConfiguration --help" + "source": "atlas api auditing getAuditingConfiguration --help" }, { "lang": "go", @@ -41473,7 +41473,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAuditingConfiguration --help" + "source": "atlas api auditing updateAuditingConfiguration --help" }, { "lang": "go", @@ -41540,7 +41540,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAWSCustomDNS --help" + "source": "atlas api awsClustersDns getAwscustomDns --help" }, { "lang": "go", @@ -41616,7 +41616,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleAWSCustomDNS --help" + "source": "atlas api awsClustersDns toggleAwscustomDns --help" }, { "lang": "go", @@ -41692,7 +41692,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listExportBuckets --help" + "source": "atlas api cloudBackups listExportBuckets --help" }, { "lang": "go", @@ -41829,7 +41829,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createExportBucket --help" + "source": "atlas api cloudBackups createExportBucket --help" }, { "lang": "go", @@ -41912,7 +41912,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteExportBucket --help" + "source": "atlas api cloudBackups deleteExportBucket --help" }, { "lang": "go", @@ -42024,7 +42024,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getExportBucket --help" + "source": "atlas api cloudBackups getExportBucket --help" }, { "lang": "go", @@ -42094,7 +42094,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataProtectionSettings --help" + "source": "atlas api cloudBackups getDataProtectionSettings --help" }, { "lang": "go", @@ -42186,7 +42186,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDataProtectionSettings --help" + "source": "atlas api cloudBackups updateDataProtectionSettings --help" }, { "lang": "go", @@ -42253,7 +42253,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderAccessRoles --help" + "source": "atlas api cloudProviderAccess listCloudProviderAccessRoles --help" }, { "lang": "go", @@ -42333,7 +42333,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess createCloudProviderAccessRole --help" }, { "lang": "go", @@ -42424,7 +42424,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deauthorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -42503,7 +42503,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess getCloudProviderAccessRole --help" }, { "lang": "go", @@ -42601,7 +42601,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api authorizeCloudProviderAccessRole --help" + "source": "atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help" }, { "lang": "go", @@ -42686,7 +42686,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listClusters --help" + "source": "atlas api clusters listClusters --help" }, { "lang": "go", @@ -42781,7 +42781,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCluster --help" + "source": "atlas api clusters createCluster --help" }, { "lang": "go", @@ -42876,7 +42876,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCloudProviderRegions --help" + "source": "atlas api clusters listCloudProviderRegions --help" }, { "lang": "go", @@ -42966,7 +42966,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedCluster --help" + "source": "atlas api clusters upgradeSharedCluster --help" }, { "lang": "go", @@ -43056,7 +43056,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api upgradeSharedClusterToServerless --help" + "source": "atlas api clusters upgradeSharedClusterToServerless --help" }, { "lang": "go", @@ -43149,7 +43149,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCluster --help" + "source": "atlas api clusters deleteCluster --help" }, { "lang": "go", @@ -43232,7 +43232,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCluster --help" + "source": "atlas api clusters getCluster --help" }, { "lang": "go", @@ -43330,7 +43330,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCluster --help" + "source": "atlas api clusters updateCluster --help" }, { "lang": "go", @@ -43418,7 +43418,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupExportJobs --help" + "source": "atlas api cloudBackups listBackupExportJobs --help" }, { "lang": "go", @@ -43512,7 +43512,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupExportJob --help" + "source": "atlas api cloudBackups createBackupExportJob --help" }, { "lang": "go", @@ -43597,7 +43597,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupExportJob --help" + "source": "atlas api cloudBackups getBackupExportJob --help" }, { "lang": "go", @@ -43685,7 +43685,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listBackupRestoreJobs --help" + "source": "atlas api cloudBackups listBackupRestoreJobs --help" }, { "lang": "go", @@ -43782,7 +43782,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createBackupRestoreJob --help" + "source": "atlas api cloudBackups createBackupRestoreJob --help" }, { "lang": "go", @@ -43876,7 +43876,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cancelBackupRestoreJob --help" + "source": "atlas api cloudBackups cancelBackupRestoreJob --help" }, { "lang": "go", @@ -43965,7 +43965,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupRestoreJob --help" + "source": "atlas api cloudBackups getBackupRestoreJob --help" }, { "lang": "go", @@ -44044,7 +44044,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllBackupSchedules --help" + "source": "atlas api cloudBackups deleteAllBackupSchedules --help" }, { "lang": "go", @@ -44121,7 +44121,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getBackupSchedule --help" + "source": "atlas api cloudBackups getBackupSchedule --help" }, { "lang": "go", @@ -44212,7 +44212,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateBackupSchedule --help" + "source": "atlas api cloudBackups updateBackupSchedule --help" }, { "lang": "go", @@ -44303,7 +44303,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listReplicaSetBackups --help" + "source": "atlas api cloudBackups listReplicaSetBackups --help" }, { "lang": "go", @@ -44394,7 +44394,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api takeSnapshot --help" + "source": "atlas api cloudBackups takeSnapshot --help" }, { "lang": "go", @@ -44485,7 +44485,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteShardedClusterBackup --help" + "source": "atlas api cloudBackups deleteShardedClusterBackup --help" }, { "lang": "go", @@ -44577,7 +44577,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getShardedClusterBackup --help" + "source": "atlas api cloudBackups getShardedClusterBackup --help" }, { "lang": "go", @@ -44659,7 +44659,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listShardedClusterBackups --help" + "source": "atlas api cloudBackups listShardedClusterBackups --help" }, { "lang": "go", @@ -44753,7 +44753,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteReplicaSetBackup --help" + "source": "atlas api cloudBackups deleteReplicaSetBackup --help" }, { "lang": "go", @@ -44845,7 +44845,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getReplicaSetBackup --help" + "source": "atlas api cloudBackups getReplicaSetBackup --help" }, { "lang": "go", @@ -44948,7 +44948,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateSnapshotRetention --help" + "source": "atlas api cloudBackups updateSnapshotRetention --help" }, { "lang": "go", @@ -45050,7 +45050,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots downloadSharedClusterBackup --help" }, { "lang": "go", @@ -45149,7 +45149,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -45231,7 +45231,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackupRestoreJobs --help" + "source": "atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help" }, { "lang": "go", @@ -45325,7 +45325,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackupRestoreJob --help" + "source": "atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help" }, { "lang": "go", @@ -45407,7 +45407,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSharedClusterBackups --help" + "source": "atlas api sharedTierSnapshots listSharedClusterBackups --help" }, { "lang": "go", @@ -45501,7 +45501,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSharedClusterBackup --help" + "source": "atlas api sharedTierSnapshots getSharedClusterBackup --help" }, { "lang": "go", @@ -45590,7 +45590,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupCheckpoints --help" + "source": "atlas api legacyBackup listLegacyBackupCheckpoints --help" }, { "lang": "go", @@ -45688,7 +45688,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupCheckpoint --help" + "source": "atlas api legacyBackup getLegacyBackupCheckpoint --help" }, { "lang": "go", @@ -45770,7 +45770,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPinnedNamespaces --help" + "source": "atlas api collectionLevelMetrics getPinnedNamespaces --help" }, { "lang": "go", @@ -45872,7 +45872,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPatch --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPatch --help" }, { "lang": "go", @@ -45974,7 +45974,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinNamespacesPut --help" + "source": "atlas api collectionLevelMetrics pinNamespacesPut --help" }, { "lang": "go", @@ -46067,7 +46067,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api unpinNamespaces --help" + "source": "atlas api collectionLevelMetrics unpinNamespaces --help" }, { "lang": "go", @@ -46168,7 +46168,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch createAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -46274,7 +46274,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesDeprecated --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesDeprecated --help" }, { "lang": "go", @@ -46374,7 +46374,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -46469,7 +46469,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch getAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -46581,7 +46581,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexDeprecated --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexDeprecated --help" }, { "lang": "go", @@ -46665,7 +46665,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedNamespace --help" + "source": "atlas api globalClusters getManagedNamespace --help" }, { "lang": "go", @@ -46748,7 +46748,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAllCustomZoneMappings --help" + "source": "atlas api globalClusters deleteAllCustomZoneMappings --help" }, { "lang": "go", @@ -46844,7 +46844,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomZoneMapping --help" + "source": "atlas api globalClusters createCustomZoneMapping --help" }, { "lang": "go", @@ -46946,7 +46946,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteManagedNamespace --help" + "source": "atlas api globalClusters deleteManagedNamespace --help" }, { "lang": "go", @@ -47045,7 +47045,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createManagedNamespace --help" + "source": "atlas api globalClusters createManagedNamespace --help" }, { "lang": "go", @@ -47230,7 +47230,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createRollingIndex --help" + "source": "atlas api rollingIndex createRollingIndex --help" }, { "lang": "go", @@ -47322,7 +47322,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOnlineArchives --help" + "source": "atlas api onlineArchive listOnlineArchives --help" }, { "lang": "go", @@ -47423,7 +47423,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOnlineArchive --help" + "source": "atlas api onlineArchive createOnlineArchive --help" }, { "lang": "go", @@ -47542,7 +47542,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadOnlineArchiveQueryLogs --help" + "source": "atlas api onlineArchive downloadOnlineArchiveQueryLogs --help" }, { "lang": "go", @@ -47640,7 +47640,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOnlineArchive --help" + "source": "atlas api onlineArchive deleteOnlineArchive --help" }, { "lang": "go", @@ -47739,7 +47739,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOnlineArchive --help" + "source": "atlas api onlineArchive getOnlineArchive --help" }, { "lang": "go", @@ -47852,7 +47852,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOnlineArchive --help" + "source": "atlas api onlineArchive updateOnlineArchive --help" }, { "lang": "go", @@ -47941,7 +47941,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api endOutageSimulation --help" + "source": "atlas api clusterOutageSimulation endOutageSimulation --help" }, { "lang": "go", @@ -48028,7 +48028,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOutageSimulation --help" + "source": "atlas api clusterOutageSimulation getOutageSimulation --help" }, { "lang": "go", @@ -48123,7 +48123,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startOutageSimulation --help" + "source": "atlas api clusterOutageSimulation startOutageSimulation --help" }, { "lang": "go", @@ -48209,7 +48209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterAdvancedConfiguration --help" + "source": "atlas api clusters getClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -48308,7 +48308,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateClusterAdvancedConfiguration --help" + "source": "atlas api clusters updateClusterAdvancedConfiguration --help" }, { "lang": "go", @@ -48384,7 +48384,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api testFailover --help" + "source": "atlas api clusters testFailover --help" }, { "lang": "go", @@ -48487,7 +48487,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacyBackupRestoreJobs --help" + "source": "atlas api legacyBackup listLegacyBackupRestoreJobs --help" }, { "lang": "go", @@ -48579,7 +48579,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup createLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -48674,7 +48674,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacyBackupRestoreJob --help" + "source": "atlas api legacyBackup getLegacyBackupRestoreJob --help" }, { "lang": "go", @@ -48759,7 +48759,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchDeployment --help" + "source": "atlas api atlasSearch deleteAtlasSearchDeployment --help" }, { "lang": "go", @@ -48839,7 +48839,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchDeployment --help" + "source": "atlas api atlasSearch getAtlasSearchDeployment --help" }, { "lang": "go", @@ -48933,7 +48933,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchDeployment --help" + "source": "atlas api atlasSearch updateAtlasSearchDeployment --help" }, { "lang": "go", @@ -49027,7 +49027,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchDeployment --help" + "source": "atlas api atlasSearch createAtlasSearchDeployment --help" }, { "lang": "go", @@ -49126,7 +49126,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexesCluster --help" + "source": "atlas api atlasSearch listAtlasSearchIndexesCluster --help" }, { "lang": "go", @@ -49224,7 +49224,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createAtlasSearchIndex --help" + "source": "atlas api atlasSearch createAtlasSearchIndex --help" }, { "lang": "go", @@ -49341,7 +49341,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasSearchIndexes --help" + "source": "atlas api atlasSearch listAtlasSearchIndexes --help" }, { "lang": "go", @@ -49454,7 +49454,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndexByName --help" }, { "lang": "go", @@ -49565,7 +49565,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch getAtlasSearchIndexByName --help" }, { "lang": "go", @@ -49690,7 +49690,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndexByName --help" + "source": "atlas api atlasSearch updateAtlasSearchIndexByName --help" }, { "lang": "go", @@ -49788,7 +49788,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteAtlasSearchIndex --help" + "source": "atlas api atlasSearch deleteAtlasSearchIndex --help" }, { "lang": "go", @@ -49894,7 +49894,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasSearchIndex --help" + "source": "atlas api atlasSearch getAtlasSearchIndex --help" }, { "lang": "go", @@ -50004,7 +50004,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateAtlasSearchIndex --help" + "source": "atlas api atlasSearch updateAtlasSearchIndex --help" }, { "lang": "go", @@ -50084,7 +50084,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup getLegacySnapshotSchedule --help" }, { "lang": "go", @@ -50173,7 +50173,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotSchedule --help" + "source": "atlas api legacyBackup updateLegacySnapshotSchedule --help" }, { "lang": "go", @@ -50276,7 +50276,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listLegacySnapshots --help" + "source": "atlas api legacyBackup listLegacySnapshots --help" }, { "lang": "go", @@ -50371,7 +50371,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLegacySnapshot --help" + "source": "atlas api legacyBackup deleteLegacySnapshot --help" }, { "lang": "go", @@ -50461,7 +50461,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLegacySnapshot --help" + "source": "atlas api legacyBackup getLegacySnapshot --help" }, { "lang": "go", @@ -50562,7 +50562,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateLegacySnapshotRetention --help" + "source": "atlas api legacyBackup updateLegacySnapshotRetention --help" }, { "lang": "go", @@ -50641,7 +50641,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getClusterStatus --help" + "source": "atlas api clusters getClusterStatus --help" }, { "lang": "go", @@ -50740,7 +50740,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForCluster --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help" }, { "lang": "go", @@ -50892,7 +50892,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceClusterMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help" }, { "lang": "go", @@ -50991,7 +50991,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pinFeatureCompatibilityVersion --help" + "source": "atlas api clusters pinFeatureCompatibilityVersion --help" }, { "lang": "go", @@ -51082,7 +51082,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api unpinFeatureCompatibilityVersion --help" + "source": "atlas api clusters unpinFeatureCompatibilityVersion --help" }, { "lang": "go", @@ -51209,7 +51209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostLogs --help" + "source": "atlas api monitoringAndLogs getHostLogs --help" }, { "lang": "go", @@ -51279,7 +51279,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceMetrics --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help" }, { "lang": "go", @@ -51373,7 +51373,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainerByCloudProvider --help" + "source": "atlas api networkPeering listPeeringContainerByCloudProvider --help" }, { "lang": "go", @@ -51461,7 +51461,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringContainer --help" + "source": "atlas api networkPeering createPeeringContainer --help" }, { "lang": "go", @@ -51537,7 +51537,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringContainers --help" + "source": "atlas api networkPeering listPeeringContainers --help" }, { "lang": "go", @@ -51626,7 +51626,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringContainer --help" + "source": "atlas api networkPeering deletePeeringContainer --help" }, { "lang": "go", @@ -51704,7 +51704,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringContainer --help" + "source": "atlas api networkPeering getPeeringContainer --help" }, { "lang": "go", @@ -51805,7 +51805,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringContainer --help" + "source": "atlas api networkPeering updatePeeringContainer --help" }, { "lang": "go", @@ -51875,7 +51875,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listCustomDatabaseRoles --help" + "source": "atlas api customDatabaseRoles listCustomDatabaseRoles --help" }, { "lang": "go", @@ -51963,7 +51963,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles createCustomDatabaseRole --help" }, { "lang": "go", @@ -52045,7 +52045,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles deleteCustomDatabaseRole --help" }, { "lang": "go", @@ -52122,7 +52122,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles getCustomDatabaseRole --help" }, { "lang": "go", @@ -52219,7 +52219,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateCustomDatabaseRole --help" + "source": "atlas api customDatabaseRoles updateCustomDatabaseRole --help" }, { "lang": "go", @@ -52302,7 +52302,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listFederatedDatabases --help" + "source": "atlas api dataFederation listFederatedDatabases --help" }, { "lang": "go", @@ -52387,7 +52387,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createFederatedDatabase --help" + "source": "atlas api dataFederation createFederatedDatabase --help" }, { "lang": "go", @@ -52463,7 +52463,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteFederatedDatabase --help" + "source": "atlas api dataFederation deleteFederatedDatabase --help" }, { "lang": "go", @@ -52540,7 +52540,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederatedDatabase --help" + "source": "atlas api dataFederation getFederatedDatabase --help" }, { "lang": "go", @@ -52637,7 +52637,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateFederatedDatabase --help" + "source": "atlas api dataFederation updateFederatedDatabase --help" }, { "lang": "go", @@ -52719,7 +52719,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimits --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimits --help" }, { "lang": "go", @@ -52807,7 +52807,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOneDataFederationInstanceQueryLimit --help" + "source": "atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help" }, { "lang": "go", @@ -52896,7 +52896,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnFederatedDatabaseQueryLimit --help" + "source": "atlas api dataFederation returnFederatedDatabaseQueryLimit --help" }, { "lang": "go", @@ -52999,7 +52999,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOneDataFederationQueryLimit --help" + "source": "atlas api dataFederation createOneDataFederationQueryLimit --help" }, { "lang": "go", @@ -53105,7 +53105,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadFederatedDatabaseQueryLogs --help" + "source": "atlas api dataFederation downloadFederatedDatabaseQueryLogs --help" }, { "lang": "go", @@ -53181,7 +53181,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUsers --help" + "source": "atlas api databaseUsers listDatabaseUsers --help" }, { "lang": "go", @@ -53421,7 +53421,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUser --help" + "source": "atlas api databaseUsers createDatabaseUser --help" }, { "lang": "go", @@ -53513,7 +53513,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDatabaseUser --help" + "source": "atlas api databaseUsers deleteDatabaseUser --help" }, { "lang": "go", @@ -53600,7 +53600,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseUser --help" + "source": "atlas api databaseUsers getDatabaseUser --help" }, { "lang": "go", @@ -53707,7 +53707,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateDatabaseUser --help" + "source": "atlas api databaseUsers updateDatabaseUser --help" }, { "lang": "go", @@ -53795,7 +53795,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabaseUserCertificates --help" + "source": "atlas api x509Authentication listDatabaseUserCertificates --help" }, { "lang": "go", @@ -53897,7 +53897,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDatabaseUserCertificate --help" + "source": "atlas api x509Authentication createDatabaseUserCertificate --help" }, { "lang": "go", @@ -54030,7 +54030,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByClusterName --help" + "source": "atlas api accessTracking listAccessLogsByClusterName --help" }, { "lang": "go", @@ -54160,7 +54160,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAccessLogsByHostname --help" + "source": "atlas api accessTracking listAccessLogsByHostname --help" }, { "lang": "go", @@ -54227,7 +54227,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help" }, { "lang": "go", @@ -54312,7 +54312,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateEncryptionAtRest --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help" }, { "lang": "go", @@ -54391,7 +54391,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help" }, { "lang": "go", @@ -54479,7 +54479,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -54581,7 +54581,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api requestEncryptionAtRestPrivateEndpointDeletion --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help" }, { "lang": "go", @@ -54670,7 +54670,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getEncryptionAtRestPrivateEndpoint --help" + "source": "atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help" }, { "lang": "go", @@ -54813,7 +54813,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectEvents --help" + "source": "atlas api events listProjectEvents --help" }, { "lang": "go", @@ -54904,7 +54904,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectEvent --help" + "source": "atlas api events getProjectEvent --help" }, { "lang": "go", @@ -54974,7 +54974,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listMetricTypes --help" + "source": "atlas api monitoringAndLogs listMetricTypes --help" }, { "lang": "go", @@ -55090,7 +55090,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listIndexMetrics --help" + "source": "atlas api monitoringAndLogs listIndexMetrics --help" }, { "lang": "go", @@ -55209,7 +55209,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getIndexMetrics --help" + "source": "atlas api monitoringAndLogs getIndexMetrics --help" }, { "lang": "go", @@ -55320,7 +55320,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMeasurements --help" + "source": "atlas api monitoringAndLogs getMeasurements --help" }, { "lang": "go", @@ -55402,7 +55402,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listThirdPartyIntegrations --help" + "source": "atlas api thirdPartyIntegrations listThirdPartyIntegrations --help" }, { "lang": "go", @@ -55497,7 +55497,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help" }, { "lang": "go", @@ -55590,7 +55590,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations getThirdPartyIntegration --help" }, { "lang": "go", @@ -55706,7 +55706,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations createThirdPartyIntegration --help" }, { "lang": "go", @@ -55819,7 +55819,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateThirdPartyIntegration --help" + "source": "atlas api thirdPartyIntegrations updateThirdPartyIntegration --help" }, { "lang": "go", @@ -55899,7 +55899,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectInvitations --help" + "source": "atlas api projects listProjectInvitations --help" }, { "lang": "go", @@ -55983,7 +55983,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitation --help" + "source": "atlas api projects updateProjectInvitation --help" }, { "lang": "go", @@ -56061,7 +56061,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectInvitation --help" + "source": "atlas api projects createProjectInvitation --help" }, { "lang": "go", @@ -56139,7 +56139,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectInvitation --help" + "source": "atlas api projects deleteProjectInvitation --help" }, { "lang": "go", @@ -56221,7 +56221,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectInvitation --help" + "source": "atlas api projects getProjectInvitation --help" }, { "lang": "go", @@ -56314,7 +56314,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectInvitationById --help" + "source": "atlas api projects updateProjectInvitationById --help" }, { "lang": "go", @@ -56385,7 +56385,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllIPAddresses --help" + "source": "atlas api projects returnAllIpaddresses --help" }, { "lang": "go", @@ -56464,7 +56464,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectLimits --help" + "source": "atlas api projects listProjectLimits --help" }, { "lang": "go", @@ -56561,7 +56561,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectLimit --help" + "source": "atlas api projects deleteProjectLimit --help" }, { "lang": "go", @@ -56659,7 +56659,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLimit --help" + "source": "atlas api projects getProjectLimit --help" }, { "lang": "go", @@ -56768,7 +56768,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setProjectLimit --help" + "source": "atlas api projects setProjectLimit --help" }, { "lang": "go", @@ -56856,7 +56856,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushMigration --help" + "source": "atlas api cloudMigrationService createPushMigration --help" }, { "lang": "go", @@ -56944,7 +56944,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api validateMigration --help" + "source": "atlas api cloudMigrationService validateMigration --help" }, { "lang": "go", @@ -57030,7 +57030,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getValidationStatus --help" + "source": "atlas api cloudMigrationService getValidationStatus --help" }, { "lang": "go", @@ -57106,7 +57106,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushMigration --help" + "source": "atlas api cloudMigrationService getPushMigration --help" }, { "lang": "go", @@ -57182,7 +57182,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api cutoverMigration --help" + "source": "atlas api cloudMigrationService cutoverMigration --help" }, { "lang": "go", @@ -57246,7 +57246,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resetMaintenanceWindow --help" + "source": "atlas api maintenanceWindows resetMaintenanceWindow --help" }, { "lang": "go", @@ -57311,7 +57311,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getMaintenanceWindow --help" + "source": "atlas api maintenanceWindows getMaintenanceWindow --help" }, { "lang": "go", @@ -57387,7 +57387,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateMaintenanceWindow --help" + "source": "atlas api maintenanceWindows updateMaintenanceWindow --help" }, { "lang": "go", @@ -57451,7 +57451,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleMaintenanceAutoDefer --help" + "source": "atlas api maintenanceWindows toggleMaintenanceAutoDefer --help" }, { "lang": "go", @@ -57515,7 +57515,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deferMaintenanceWindow --help" + "source": "atlas api maintenanceWindows deferMaintenanceWindow --help" }, { "lang": "go", @@ -57582,7 +57582,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getManagedSlowMs --help" + "source": "atlas api performanceAdvisor getManagedSlowMs --help" }, { "lang": "go", @@ -57649,7 +57649,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor disableSlowOperationThresholding --help" }, { "lang": "go", @@ -57716,7 +57716,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api enableSlowOperationThresholding --help" + "source": "atlas api performanceAdvisor enableSlowOperationThresholding --help" }, { "lang": "go", @@ -57844,7 +57844,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectLTSVersions --help" + "source": "atlas api projects getProjectLtsversions --help" }, { "lang": "go", @@ -57937,7 +57937,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPeeringConnections --help" + "source": "atlas api networkPeering listPeeringConnections --help" }, { "lang": "go", @@ -58026,7 +58026,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPeeringConnection --help" + "source": "atlas api networkPeering createPeeringConnection --help" }, { "lang": "go", @@ -58108,7 +58108,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePeeringConnection --help" + "source": "atlas api networkPeering deletePeeringConnection --help" }, { "lang": "go", @@ -58188,7 +58188,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPeeringConnection --help" + "source": "atlas api networkPeering getPeeringConnection --help" }, { "lang": "go", @@ -58285,7 +58285,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePeeringConnection --help" + "source": "atlas api networkPeering updatePeeringConnection --help" }, { "lang": "go", @@ -58355,7 +58355,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelines --help" + "source": "atlas api dataLakePipelines listPipelines --help" }, { "lang": "go", @@ -58434,7 +58434,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPipeline --help" + "source": "atlas api dataLakePipelines createPipeline --help" }, { "lang": "go", @@ -58513,7 +58513,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipeline --help" + "source": "atlas api dataLakePipelines deletePipeline --help" }, { "lang": "go", @@ -58593,7 +58593,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipeline --help" + "source": "atlas api dataLakePipelines getPipeline --help" }, { "lang": "go", @@ -58687,7 +58687,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePipeline --help" + "source": "atlas api dataLakePipelines updatePipeline --help" }, { "lang": "go", @@ -58772,7 +58772,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSchedules --help" + "source": "atlas api dataLakePipelines listPipelineSchedules --help" }, { "lang": "go", @@ -58873,7 +58873,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineSnapshots --help" + "source": "atlas api dataLakePipelines listPipelineSnapshots --help" }, { "lang": "go", @@ -58955,7 +58955,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api pausePipeline --help" + "source": "atlas api dataLakePipelines pausePipeline --help" }, { "lang": "go", @@ -59037,7 +59037,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api resumePipeline --help" + "source": "atlas api dataLakePipelines resumePipeline --help" }, { "lang": "go", @@ -59138,7 +59138,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPipelineRuns --help" + "source": "atlas api dataLakePipelines listPipelineRuns --help" }, { "lang": "go", @@ -59233,7 +59233,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePipelineRunDataset --help" + "source": "atlas api dataLakePipelines deletePipelineRunDataset --help" }, { "lang": "go", @@ -59326,7 +59326,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPipelineRun --help" + "source": "atlas api dataLakePipelines getPipelineRun --help" }, { "lang": "go", @@ -59419,7 +59419,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api triggerSnapshotIngestion --help" + "source": "atlas api dataLakePipelines triggerSnapshotIngestion --help" }, { "lang": "go", @@ -59501,7 +59501,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpointService --help" + "source": "atlas api privateEndpointServices createPrivateEndpointService --help" }, { "lang": "go", @@ -59571,7 +59571,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -59650,7 +59650,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api toggleRegionalizedPrivateEndpointSetting --help" + "source": "atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help" }, { "lang": "go", @@ -59731,7 +59731,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessPrivateEndpoints --help" + "source": "atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help" }, { "lang": "go", @@ -59822,7 +59822,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -59912,7 +59912,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -60000,7 +60000,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -60099,7 +60099,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessPrivateEndpoint --help" + "source": "atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help" }, { "lang": "go", @@ -60184,7 +60184,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPrivateEndpointServices --help" + "source": "atlas api privateEndpointServices listPrivateEndpointServices --help" }, { "lang": "go", @@ -60278,7 +60278,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpointService --help" + "source": "atlas api privateEndpointServices deletePrivateEndpointService --help" }, { "lang": "go", @@ -60373,7 +60373,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpointService --help" + "source": "atlas api privateEndpointServices getPrivateEndpointService --help" }, { "lang": "go", @@ -60487,7 +60487,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPrivateEndpoint --help" + "source": "atlas api privateEndpointServices createPrivateEndpoint --help" }, { "lang": "go", @@ -60591,7 +60591,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePrivateEndpoint --help" + "source": "atlas api privateEndpointServices deletePrivateEndpoint --help" }, { "lang": "go", @@ -60696,7 +60696,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPrivateEndpoint --help" + "source": "atlas api privateEndpointServices getPrivateEndpoint --help" }, { "lang": "go", @@ -60768,7 +60768,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyConnectViaPeeringOnlyModeForOneProject --help" + "source": "atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help" }, { "lang": "go", @@ -60852,7 +60852,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disablePeering --help" + "source": "atlas api networkPeering disablePeering --help" }, { "lang": "go", @@ -60934,7 +60934,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDataFederationPrivateEndpoints --help" + "source": "atlas api dataFederation listDataFederationPrivateEndpoints --help" }, { "lang": "go", @@ -61013,7 +61013,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation createDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -61095,7 +61095,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation deleteDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -61178,7 +61178,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDataFederationPrivateEndpoint --help" + "source": "atlas api dataFederation getDataFederationPrivateEndpoint --help" }, { "lang": "go", @@ -61254,7 +61254,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listAtlasProcesses --help" + "source": "atlas api monitoringAndLogs listAtlasProcesses --help" }, { "lang": "go", @@ -61332,7 +61332,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getAtlasProcess --help" + "source": "atlas api monitoringAndLogs getAtlasProcess --help" }, { "lang": "go", @@ -61408,7 +61408,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespacesForHost --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help" }, { "lang": "go", @@ -61495,7 +61495,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDatabases --help" + "source": "atlas api monitoringAndLogs listDatabases --help" }, { "lang": "go", @@ -61582,7 +61582,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabase --help" + "source": "atlas api monitoringAndLogs getDatabase --help" }, { "lang": "go", @@ -61708,7 +61708,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDatabaseMeasurements --help" + "source": "atlas api monitoringAndLogs getDatabaseMeasurements --help" }, { "lang": "go", @@ -61795,7 +61795,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskPartitions --help" + "source": "atlas api monitoringAndLogs listDiskPartitions --help" }, { "lang": "go", @@ -61879,7 +61879,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listDiskMeasurements --help" + "source": "atlas api monitoringAndLogs listDiskMeasurements --help" }, { "lang": "go", @@ -62014,7 +62014,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getDiskMeasurements --help" + "source": "atlas api monitoringAndLogs getDiskMeasurements --help" }, { "lang": "go", @@ -62256,7 +62256,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getHostMeasurements --help" + "source": "atlas api monitoringAndLogs getHostMeasurements --help" }, { "lang": "go", @@ -62352,7 +62352,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueryNamespaces --help" + "source": "atlas api performanceAdvisor listSlowQueryNamespaces --help" }, { "lang": "go", @@ -62472,7 +62472,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSlowQueries --help" + "source": "atlas api performanceAdvisor listSlowQueries --help" }, { "lang": "go", @@ -62608,7 +62608,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSuggestedIndexes --help" + "source": "atlas api performanceAdvisor listSuggestedIndexes --help" }, { "lang": "go", @@ -62735,7 +62735,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getCollStatsLatencyNamespaceHostMeasurements --help" + "source": "atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help" }, { "lang": "go", @@ -62808,7 +62808,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deletePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport deletePushBasedLogConfiguration --help" }, { "lang": "go", @@ -62879,7 +62879,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport getPushBasedLogConfiguration --help" }, { "lang": "go", @@ -62962,7 +62962,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updatePushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport updatePushBasedLogConfiguration --help" }, { "lang": "go", @@ -63045,7 +63045,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createPushBasedLogConfiguration --help" + "source": "atlas api pushBasedLogExport createPushBasedLogConfiguration --help" }, { "lang": "go", @@ -63127,7 +63127,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api loadSampleDataset --help" + "source": "atlas api clusters loadSampleDataset --help" }, { "lang": "go", @@ -63203,7 +63203,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getSampleDatasetLoadStatus --help" + "source": "atlas api clusters getSampleDatasetLoadStatus --help" }, { "lang": "go", @@ -63279,7 +63279,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessInstances --help" + "source": "atlas api serverlessInstances listServerlessInstances --help" }, { "lang": "go", @@ -63361,7 +63361,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessInstance --help" + "source": "atlas api serverlessInstances createServerlessInstance --help" }, { "lang": "go", @@ -63452,7 +63452,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackupRestoreJobs --help" + "source": "atlas api cloudBackups listServerlessBackupRestoreJobs --help" }, { "lang": "go", @@ -63549,7 +63549,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups createServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -63643,7 +63643,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackupRestoreJob --help" + "source": "atlas api cloudBackups getServerlessBackupRestoreJob --help" }, { "lang": "go", @@ -63734,7 +63734,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServerlessBackups --help" + "source": "atlas api cloudBackups listServerlessBackups --help" }, { "lang": "go", @@ -63826,7 +63826,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessBackup --help" + "source": "atlas api cloudBackups getServerlessBackup --help" }, { "lang": "go", @@ -63905,7 +63905,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor getServerlessAutoIndexing --help" }, { "lang": "go", @@ -63988,7 +63988,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api setServerlessAutoIndexing --help" + "source": "atlas api performanceAdvisor setServerlessAutoIndexing --help" }, { "lang": "go", @@ -64073,7 +64073,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServerlessInstance --help" + "source": "atlas api serverlessInstances deleteServerlessInstance --help" }, { "lang": "go", @@ -64156,7 +64156,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServerlessInstance --help" + "source": "atlas api serverlessInstances getServerlessInstance --help" }, { "lang": "go", @@ -64247,7 +64247,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServerlessInstance --help" + "source": "atlas api serverlessInstances updateServerlessInstance --help" }, { "lang": "go", @@ -64323,7 +64323,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectServiceAccounts --help" + "source": "atlas api groups listProjectServiceAccounts --help" }, { "lang": "go", @@ -64403,7 +64403,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createProjectServiceAccount --help" + "source": "atlas api groups createProjectServiceAccount --help" }, { "lang": "go", @@ -64483,7 +64483,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteProjectServiceAccount --help" + "source": "atlas api groups deleteProjectServiceAccount --help" }, { "lang": "go", @@ -64560,7 +64560,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectServiceAccount --help" + "source": "atlas api groups getProjectServiceAccount --help" }, { "lang": "go", @@ -64651,7 +64651,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectServiceAccount --help" + "source": "atlas api groups updateProjectServiceAccount --help" }, { "lang": "go", @@ -64744,7 +64744,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addProjectServiceAccount --help" + "source": "atlas api groups addProjectServiceAccount --help" }, { "lang": "go", @@ -64817,7 +64817,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getProjectSettings --help" + "source": "atlas api projects getProjectSettings --help" }, { "lang": "go", @@ -64899,7 +64899,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectSettings --help" + "source": "atlas api projects updateProjectSettings --help" }, { "lang": "go", @@ -64972,7 +64972,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamInstances --help" + "source": "atlas api streams listStreamInstances --help" }, { "lang": "go", @@ -65051,7 +65051,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamInstance --help" + "source": "atlas api streams createStreamInstance --help" }, { "lang": "go", @@ -65133,7 +65133,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamInstance --help" + "source": "atlas api streams deleteStreamInstance --help" }, { "lang": "go", @@ -65218,7 +65218,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamInstance --help" + "source": "atlas api streams getStreamInstance --help" }, { "lang": "go", @@ -65312,7 +65312,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamInstance --help" + "source": "atlas api streams updateStreamInstance --help" }, { "lang": "go", @@ -65421,7 +65421,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadStreamTenantAuditLogs --help" + "source": "atlas api streams downloadStreamTenantAuditLogs --help" }, { "lang": "go", @@ -65506,7 +65506,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamConnections --help" + "source": "atlas api streams listStreamConnections --help" }, { "lang": "go", @@ -65597,7 +65597,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamConnection --help" + "source": "atlas api streams createStreamConnection --help" }, { "lang": "go", @@ -65688,7 +65688,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamConnection --help" + "source": "atlas api streams deleteStreamConnection --help" }, { "lang": "go", @@ -65771,7 +65771,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamConnection --help" + "source": "atlas api streams getStreamConnection --help" }, { "lang": "go", @@ -65874,7 +65874,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateStreamConnection --help" + "source": "atlas api streams updateStreamConnection --help" }, { "lang": "go", @@ -65967,7 +65967,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createStreamProcessor --help" + "source": "atlas api streams createStreamProcessor --help" }, { "lang": "go", @@ -66055,7 +66055,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteStreamProcessor --help" + "source": "atlas api streams deleteStreamProcessor --help" }, { "lang": "go", @@ -66144,7 +66144,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getStreamProcessor --help" + "source": "atlas api streams getStreamProcessor --help" }, { "lang": "go", @@ -66235,7 +66235,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api startStreamProcessor --help" + "source": "atlas api streams startStreamProcessor --help" }, { "lang": "go", @@ -66326,7 +66326,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api stopStreamProcessor --help" + "source": "atlas api streams stopStreamProcessor --help" }, { "lang": "go", @@ -66417,7 +66417,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listStreamProcessors --help" + "source": "atlas api streams listStreamProcessors --help" }, { "lang": "go", @@ -66502,7 +66502,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectTeams --help" + "source": "atlas api teams listProjectTeams --help" }, { "lang": "go", @@ -66594,7 +66594,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addAllTeamsToProject --help" + "source": "atlas api teams addAllTeamsToProject --help" }, { "lang": "go", @@ -66680,7 +66680,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectTeam --help" + "source": "atlas api teams removeProjectTeam --help" }, { "lang": "go", @@ -66781,7 +66781,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateTeamRoles --help" + "source": "atlas api teams updateTeamRoles --help" }, { "lang": "go", @@ -66848,7 +66848,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfiguration --help" + "source": "atlas api ldapConfiguration getLdapconfiguration --help" }, { "lang": "go", @@ -66927,7 +66927,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api saveLDAPConfiguration --help" + "source": "atlas api ldapConfiguration saveLdapconfiguration --help" }, { "lang": "go", @@ -66991,7 +66991,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api disableCustomerManagedX509 --help" + "source": "atlas api x509Authentication disableCustomerManagedX509 --help" }, { "lang": "go", @@ -67058,7 +67058,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLDAPConfiguration --help" + "source": "atlas api ldapConfiguration deleteLdapconfiguration --help" }, { "lang": "go", @@ -67139,7 +67139,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api verifyLDAPConfiguration --help" + "source": "atlas api ldapConfiguration verifyLdapconfiguration --help" }, { "lang": "go", @@ -67218,7 +67218,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getLDAPConfigurationStatus --help" + "source": "atlas api ldapConfiguration getLdapconfigurationStatus --help" }, { "lang": "go", @@ -67312,7 +67312,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listProjectUsers --help" + "source": "atlas api projects listProjectUsers --help" }, { "lang": "go", @@ -67394,7 +67394,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeProjectUser --help" + "source": "atlas api projects removeProjectUser --help" }, { "lang": "go", @@ -67490,7 +67490,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateProjectRoles --help" + "source": "atlas api projects updateProjectRoles --help" }, { "lang": "go", @@ -67566,7 +67566,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listUSSInstances --help" + "source": "atlas api ussInstances listUssinstances --help" }, { "lang": "go", @@ -67648,7 +67648,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUSSInstance --help" + "source": "atlas api ussInstances createUssinstance --help" }, { "lang": "go", @@ -67733,7 +67733,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteUSSInstance --help" + "source": "atlas api ussInstances deleteUssinstance --help" }, { "lang": "go", @@ -67819,7 +67819,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUSSInstance --help" + "source": "atlas api ussInstances getUssinstance --help" }, { "lang": "go", @@ -67910,7 +67910,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateUSSInstance --help" + "source": "atlas api ussInstances updateUssinstance --help" }, { "lang": "go", @@ -67985,7 +67985,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api migrateProjectToAnotherOrg --help" + "source": "atlas api projects migrateProjectToAnotherOrg --help" }, { "lang": "go", @@ -68075,7 +68075,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizations --help" + "source": "atlas api organizations listOrganizations --help" }, { "lang": "go", @@ -68160,7 +68160,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganization --help" + "source": "atlas api organizations createOrganization --help" }, { "lang": "go", @@ -68236,7 +68236,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganization --help" + "source": "atlas api organizations deleteOrganization --help" }, { "lang": "go", @@ -68310,7 +68310,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganization --help" + "source": "atlas api organizations getOrganization --help" }, { "lang": "go", @@ -68395,7 +68395,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameOrganization --help" + "source": "atlas api organizations renameOrganization --help" }, { "lang": "go", @@ -68475,7 +68475,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeys --help" + "source": "atlas api programmaticApiKeys listApiKeys --help" }, { "lang": "go", @@ -68555,7 +68555,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKey --help" + "source": "atlas api programmaticApiKeys createApiKey --help" }, { "lang": "go", @@ -68638,7 +68638,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKey --help" + "source": "atlas api programmaticApiKeys deleteApiKey --help" }, { "lang": "go", @@ -68719,7 +68719,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKey --help" + "source": "atlas api programmaticApiKeys getApiKey --help" }, { "lang": "go", @@ -68814,7 +68814,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateApiKey --help" + "source": "atlas api programmaticApiKeys updateApiKey --help" }, { "lang": "go", @@ -68906,7 +68906,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listApiKeyAccessListsEntries --help" + "source": "atlas api programmaticApiKeys listApiKeyAccessListsEntries --help" }, { "lang": "go", @@ -69012,7 +69012,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys createApiKeyAccessList --help" }, { "lang": "go", @@ -69112,7 +69112,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteApiKeyAccessListEntry --help" + "source": "atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help" }, { "lang": "go", @@ -69207,7 +69207,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getApiKeyAccessList --help" + "source": "atlas api programmaticApiKeys getApiKeyAccessList --help" }, { "lang": "go", @@ -69285,7 +69285,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess --help" + "source": "atlas api invoices createCostExplorerQueryProcess --help" }, { "lang": "go", @@ -69376,7 +69376,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createCostExplorerQueryProcess_1 --help" + "source": "atlas api invoices createCostExplorerQueryProcess1 --help" }, { "lang": "go", @@ -69491,7 +69491,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationEvents --help" + "source": "atlas api events listOrganizationEvents --help" }, { "lang": "go", @@ -69582,7 +69582,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationEvent --help" + "source": "atlas api events getOrganizationEvent --help" }, { "lang": "go", @@ -69655,7 +69655,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getFederationSettings --help" + "source": "atlas api federatedAuthentication getFederationSettings --help" }, { "lang": "go", @@ -69745,7 +69745,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationProjects --help" + "source": "atlas api organizations listOrganizationProjects --help" }, { "lang": "go", @@ -69830,7 +69830,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationInvitations --help" + "source": "atlas api organizations listOrganizationInvitations --help" }, { "lang": "go", @@ -69912,7 +69912,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitation --help" + "source": "atlas api organizations updateOrganizationInvitation --help" }, { "lang": "go", @@ -69994,7 +69994,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createOrganizationInvitation --help" + "source": "atlas api organizations createOrganizationInvitation --help" }, { "lang": "go", @@ -70076,7 +70076,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteOrganizationInvitation --help" + "source": "atlas api organizations deleteOrganizationInvitation --help" }, { "lang": "go", @@ -70156,7 +70156,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationInvitation --help" + "source": "atlas api organizations getOrganizationInvitation --help" }, { "lang": "go", @@ -70250,7 +70250,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationInvitationById --help" + "source": "atlas api organizations updateOrganizationInvitationById --help" }, { "lang": "go", @@ -70408,7 +70408,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listInvoices --help" + "source": "atlas api invoices listInvoices --help" }, { "lang": "go", @@ -70478,7 +70478,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listPendingInvoices --help" + "source": "atlas api invoices listPendingInvoices --help" }, { "lang": "go", @@ -70566,7 +70566,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getInvoice --help" + "source": "atlas api invoices getInvoice --help" }, { "lang": "go", @@ -70647,7 +70647,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api downloadInvoiceCSV --help" + "source": "atlas api invoices downloadInvoiceCsv --help" }, { "lang": "go", @@ -70743,7 +70743,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api queryLineItemsFromSingleInvoice --help" + "source": "atlas api invoices queryLineItemsFromSingleInvoice --help" }, { "lang": "go", @@ -70816,7 +70816,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listSourceProjects --help" + "source": "atlas api cloudMigrationService listSourceProjects --help" }, { "lang": "go", @@ -70883,7 +70883,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteLinkToken --help" + "source": "atlas api cloudMigrationService deleteLinkToken --help" }, { "lang": "go", @@ -70962,7 +70962,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createLinkToken --help" + "source": "atlas api cloudMigrationService createLinkToken --help" }, { "lang": "go", @@ -71038,7 +71038,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccounts --help" + "source": "atlas api organizations listServiceAccounts --help" }, { "lang": "go", @@ -71117,7 +71117,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccount --help" + "source": "atlas api organizations createServiceAccount --help" }, { "lang": "go", @@ -71193,7 +71193,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccount --help" + "source": "atlas api organizations deleteServiceAccount --help" }, { "lang": "go", @@ -71270,7 +71270,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getServiceAccount --help" + "source": "atlas api organizations getServiceAccount --help" }, { "lang": "go", @@ -71361,7 +71361,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateServiceAccount --help" + "source": "atlas api organizations updateServiceAccount --help" }, { "lang": "go", @@ -71446,7 +71446,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listServiceAccountProjects --help" + "source": "atlas api organizations listServiceAccountProjects --help" }, { "lang": "go", @@ -71536,7 +71536,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createServiceAccountSecret --help" + "source": "atlas api organizations createServiceAccountSecret --help" }, { "lang": "go", @@ -71621,7 +71621,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteServiceAccountSecret --help" + "source": "atlas api organizations deleteServiceAccountSecret --help" }, { "lang": "go", @@ -71694,7 +71694,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getOrganizationSettings --help" + "source": "atlas api organizations getOrganizationSettings --help" }, { "lang": "go", @@ -71776,7 +71776,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationSettings --help" + "source": "atlas api organizations updateOrganizationSettings --help" }, { "lang": "go", @@ -71862,7 +71862,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationTeams --help" + "source": "atlas api teams listOrganizationTeams --help" }, { "lang": "go", @@ -71951,7 +71951,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createTeam --help" + "source": "atlas api teams createTeam --help" }, { "lang": "go", @@ -72037,7 +72037,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamByName --help" + "source": "atlas api teams getTeamByName --help" }, { "lang": "go", @@ -72126,7 +72126,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api deleteTeam --help" + "source": "atlas api teams deleteTeam --help" }, { "lang": "go", @@ -72213,7 +72213,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getTeamById --help" + "source": "atlas api teams getTeamById --help" }, { "lang": "go", @@ -72314,7 +72314,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api renameTeam --help" + "source": "atlas api teams renameTeam --help" }, { "lang": "go", @@ -72412,7 +72412,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listTeamUsers --help" + "source": "atlas api teams listTeamUsers --help" }, { "lang": "go", @@ -72516,7 +72516,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api addTeamUser --help" + "source": "atlas api teams addTeamUser --help" }, { "lang": "go", @@ -72614,7 +72614,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeTeamUser --help" + "source": "atlas api teams removeTeamUser --help" }, { "lang": "go", @@ -72696,7 +72696,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api listOrganizationUsers --help" + "source": "atlas api organizations listOrganizationUsers --help" }, { "lang": "go", @@ -72781,7 +72781,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api removeOrganizationUser --help" + "source": "atlas api organizations removeOrganizationUser --help" }, { "lang": "go", @@ -72877,7 +72877,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api updateOrganizationRoles --help" + "source": "atlas api organizations updateOrganizationRoles --help" }, { "lang": "go", @@ -72930,7 +72930,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api returnAllControlPlaneIPAddresses --help" + "source": "atlas api root returnAllControlPlaneIpaddresses --help" }, { "lang": "go", @@ -73008,7 +73008,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api createUser --help" + "source": "atlas api mongoDbCloudUsers createUser --help" }, { "lang": "go", @@ -73085,7 +73085,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUserByUsername --help" + "source": "atlas api mongoDbCloudUsers getUserByUsername --help" }, { "lang": "go", @@ -73164,7 +73164,7 @@ { "lang": "cURL", "label": "Atlas CLI", - "source": "atlas api getUser --help" + "source": "atlas api mongoDbCloudUsers getUser --help" }, { "lang": "go", 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 ef971879a3..d534d1a5f0 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 @@ -30558,7 +30558,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSystemStatus --help + source: atlas api root getSystemStatus --help - label: Go lang: go source: | @@ -30628,7 +30628,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationMatchersFieldNames --help + source: atlas api alertConfigurations listAlertConfigurationMatchersFieldNames --help - label: Go lang: go source: | @@ -30699,7 +30699,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClustersForAllProjects --help + source: atlas api clusters listClustersForAllProjects --help - label: Go lang: go source: | @@ -30770,7 +30770,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listEventTypes --help + source: atlas api events listEventTypes --help - label: Go lang: go source: | @@ -30839,7 +30839,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederationApp --help + source: atlas api federatedAuthentication deleteFederationApp --help - label: Go lang: go source: | @@ -30913,7 +30913,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listConnectedOrgConfigs --help + source: atlas api federatedAuthentication listConnectedOrgConfigs --help - label: Go lang: go source: | @@ -30995,7 +30995,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeConnectedOrgConfig --help + source: atlas api federatedAuthentication removeConnectedOrgConfig --help - label: Go lang: go source: | @@ -31076,7 +31076,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getConnectedOrgConfig --help + source: atlas api federatedAuthentication getConnectedOrgConfig --help - label: Go lang: go source: | @@ -31164,7 +31164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateConnectedOrgConfig --help + source: atlas api federatedAuthentication updateConnectedOrgConfig --help - label: Go lang: go source: | @@ -31241,7 +31241,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listRoleMappings --help + source: atlas api federatedAuthentication listRoleMappings --help - label: Go lang: go source: | @@ -31320,7 +31320,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRoleMapping --help + source: atlas api federatedAuthentication createRoleMapping --help - label: Go lang: go source: | @@ -31405,7 +31405,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteRoleMapping --help + source: atlas api federatedAuthentication deleteRoleMapping --help - label: Go lang: go source: | @@ -31487,7 +31487,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRoleMapping --help + source: atlas api federatedAuthentication getRoleMapping --help - label: Go lang: go source: | @@ -31576,7 +31576,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateRoleMapping --help + source: atlas api federatedAuthentication updateRoleMapping --help - label: Go lang: go source: | @@ -31676,7 +31676,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIdentityProviders --help + source: atlas api federatedAuthentication listIdentityProviders --help - label: Go lang: go source: | @@ -31759,7 +31759,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createIdentityProvider --help + source: atlas api federatedAuthentication createIdentityProvider --help - label: Go lang: go source: | @@ -31840,7 +31840,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteIdentityProvider --help + source: atlas api federatedAuthentication deleteIdentityProvider --help - label: Go lang: go source: | @@ -31920,7 +31920,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProvider --help + source: atlas api federatedAuthentication getIdentityProvider --help - label: Go lang: go source: | @@ -32008,7 +32008,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateIdentityProvider --help + source: atlas api federatedAuthentication updateIdentityProvider --help - label: Go lang: go source: | @@ -32089,7 +32089,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api revokeJwksFromIdentityProvider --help + source: atlas api federatedAuthentication revokeJwksFromIdentityProvider --help - label: Go lang: go source: | @@ -32161,7 +32161,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIdentityProviderMetadata --help + source: atlas api federatedAuthentication getIdentityProviderMetadata --help - label: Go lang: go source: | @@ -32234,7 +32234,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjects --help + source: atlas api projects listProjects --help - label: Go lang: go source: | @@ -32324,7 +32324,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProject --help + source: atlas api projects createProject --help - label: Go lang: go source: | @@ -32399,7 +32399,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProject --help + source: atlas api projects deleteProject --help - label: Go lang: go source: | @@ -32469,7 +32469,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProject --help + source: atlas api projects getProject --help - label: Go lang: go source: | @@ -32550,7 +32550,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProject --help + source: atlas api projects updateProject --help - label: Go lang: go source: | @@ -32635,7 +32635,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToProject --help + source: atlas api projects addUserToProject --help - label: Go lang: go source: | @@ -32714,7 +32714,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectIpAccessLists --help + source: atlas api projectIpAccessList listProjectIpAccessLists --help - label: Go lang: go source: | @@ -32801,7 +32801,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectIpAccessList --help + source: atlas api projectIpAccessList createProjectIpAccessList --help - label: Go lang: go source: | @@ -32892,7 +32892,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectIpAccessList --help + source: atlas api projectIpAccessList deleteProjectIpAccessList --help - label: Go lang: go source: | @@ -32975,7 +32975,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpList --help + source: atlas api projectIpAccessList getProjectIpList --help - label: Go lang: go source: | @@ -33058,7 +33058,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectIpAccessListStatus --help + source: atlas api projectIpAccessList getProjectIpAccessListStatus --help - label: Go lang: go source: | @@ -33133,7 +33133,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurations --help + source: atlas api alertConfigurations listAlertConfigurations --help - label: Go lang: go source: | @@ -33213,7 +33213,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAlertConfiguration --help + source: atlas api alertConfigurations createAlertConfiguration --help - label: Go lang: go source: | @@ -33299,7 +33299,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAlertConfiguration --help + source: atlas api alertConfigurations deleteAlertConfiguration --help - label: Go lang: go source: | @@ -33382,7 +33382,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlertConfiguration --help + source: atlas api alertConfigurations getAlertConfiguration --help - label: Go lang: go source: | @@ -33474,7 +33474,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAlertConfiguration --help + source: atlas api alertConfigurations toggleAlertConfiguration --help - label: Go lang: go source: | @@ -33572,7 +33572,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAlertConfiguration --help + source: atlas api alertConfigurations updateAlertConfiguration --help - label: Go lang: go source: | @@ -33663,7 +33663,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertsByAlertConfigurationId --help + source: atlas api alerts listAlertsByAlertConfigurationId --help - label: Go lang: go source: | @@ -33749,7 +33749,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlerts --help + source: atlas api alerts listAlerts --help - label: Go lang: go source: | @@ -33832,7 +33832,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAlert --help + source: atlas api alerts getAlert --help - label: Go lang: go source: | @@ -33923,7 +33923,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acknowledgeAlert --help + source: atlas api alerts acknowledgeAlert --help - label: Go lang: go source: | @@ -34013,7 +34013,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAlertConfigurationsByAlertId --help + source: atlas api alertConfigurations listAlertConfigurationsByAlertId --help - label: Go lang: go source: | @@ -34088,7 +34088,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectApiKeys --help + source: atlas api programmaticApiKeys listProjectApiKeys --help - label: Go lang: go source: | @@ -34163,7 +34163,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectApiKey --help + source: atlas api programmaticApiKeys createProjectApiKey --help - label: Go lang: go source: | @@ -34250,7 +34250,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectApiKey --help + source: atlas api programmaticApiKeys removeProjectApiKey --help - label: Go lang: go source: | @@ -34339,7 +34339,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKeyRoles --help + source: atlas api programmaticApiKeys updateApiKeyRoles --help - label: Go lang: go source: | @@ -34429,7 +34429,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectApiKey --help + source: atlas api programmaticApiKeys addProjectApiKey --help - label: Go lang: go source: | @@ -34502,7 +34502,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAuditingConfiguration --help + source: atlas api auditing getAuditingConfiguration --help - label: Go lang: go source: | @@ -34579,7 +34579,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAuditingConfiguration --help + source: atlas api auditing updateAuditingConfiguration --help - label: Go lang: go source: | @@ -34652,7 +34652,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAWSCustomDNS --help + source: atlas api awsClustersDns getAwscustomDns --help - label: Go lang: go source: | @@ -34727,7 +34727,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleAWSCustomDNS --help + source: atlas api awsClustersDns toggleAwscustomDns --help - label: Go lang: go source: | @@ -34803,7 +34803,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listExportBuckets --help + source: atlas api cloudBackups listExportBuckets --help - label: Go lang: go source: | @@ -34921,7 +34921,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createExportBucket --help + source: atlas api cloudBackups createExportBucket --help - label: Go lang: go source: | @@ -35007,7 +35007,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteExportBucket --help + source: atlas api cloudBackups deleteExportBucket --help - label: Go lang: go source: | @@ -35109,7 +35109,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getExportBucket --help + source: atlas api cloudBackups getExportBucket --help - label: Go lang: go source: | @@ -35180,7 +35180,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataProtectionSettings --help + source: atlas api cloudBackups getDataProtectionSettings --help - label: Go lang: go source: | @@ -35266,7 +35266,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDataProtectionSettings --help + source: atlas api cloudBackups updateDataProtectionSettings --help - label: Go lang: go source: | @@ -35339,7 +35339,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderAccessRoles --help + source: atlas api cloudProviderAccess listCloudProviderAccessRoles --help - label: Go lang: go source: | @@ -35417,7 +35417,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCloudProviderAccessRole --help + source: atlas api cloudProviderAccess createCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35507,7 +35507,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deauthorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess deauthorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35585,7 +35585,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCloudProviderAccessRole --help + source: atlas api cloudProviderAccess getCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35676,7 +35676,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api authorizeCloudProviderAccessRole --help + source: atlas api cloudProviderAccess authorizeCloudProviderAccessRole --help - label: Go lang: go source: | @@ -35758,7 +35758,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusters --help + source: atlas api clusters listClusters --help - label: Go lang: go source: | @@ -35969,7 +35969,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCluster --help + source: atlas api clusters createCluster --help - label: Go lang: go source: | @@ -36060,7 +36060,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCluster --help + source: atlas api clusters deleteCluster --help - label: Go lang: go source: | @@ -36141,7 +36141,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCluster --help + source: atlas api clusters getCluster --help - label: Go lang: go source: | @@ -36232,7 +36232,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCluster --help + source: atlas api clusters updateCluster --help - label: Go lang: go source: | @@ -36368,7 +36368,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceClusterMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceClusterMeasurements --help - label: Go lang: go source: | @@ -36458,7 +36458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForCluster --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForCluster --help - label: Go lang: go source: | @@ -36539,7 +36539,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupExportJobs --help + source: atlas api cloudBackups listBackupExportJobs --help - label: Go lang: go source: | @@ -36628,7 +36628,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupExportJob --help + source: atlas api cloudBackups createBackupExportJob --help - label: Go lang: go source: | @@ -36715,7 +36715,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupExportJob --help + source: atlas api cloudBackups getBackupExportJob --help - label: Go lang: go source: | @@ -36796,7 +36796,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listBackupRestoreJobs --help + source: atlas api cloudBackups listBackupRestoreJobs --help - label: Go lang: go source: | @@ -36889,7 +36889,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createBackupRestoreJob --help + source: atlas api cloudBackups createBackupRestoreJob --help - label: Go lang: go source: | @@ -36982,7 +36982,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cancelBackupRestoreJob --help + source: atlas api cloudBackups cancelBackupRestoreJob --help - label: Go lang: go source: | @@ -37068,7 +37068,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupRestoreJob --help + source: atlas api cloudBackups getBackupRestoreJob --help - label: Go lang: go source: | @@ -37147,7 +37147,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllBackupSchedules --help + source: atlas api cloudBackups deleteAllBackupSchedules --help - label: Go lang: go source: | @@ -37224,7 +37224,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getBackupSchedule --help + source: atlas api cloudBackups getBackupSchedule --help - label: Go lang: go source: | @@ -37313,7 +37313,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateBackupSchedule --help + source: atlas api cloudBackups updateBackupSchedule --help - label: Go lang: go source: | @@ -37400,7 +37400,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listReplicaSetBackups --help + source: atlas api cloudBackups listReplicaSetBackups --help - label: Go lang: go source: | @@ -37489,7 +37489,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api takeSnapshot --help + source: atlas api cloudBackups takeSnapshot --help - label: Go lang: go source: | @@ -37582,7 +37582,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteReplicaSetBackup --help + source: atlas api cloudBackups deleteReplicaSetBackup --help - label: Go lang: go source: | @@ -37670,7 +37670,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getReplicaSetBackup --help + source: atlas api cloudBackups getReplicaSetBackup --help - label: Go lang: go source: | @@ -37765,7 +37765,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateSnapshotRetention --help + source: atlas api cloudBackups updateSnapshotRetention --help - label: Go lang: go source: | @@ -37856,7 +37856,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteShardedClusterBackup --help + source: atlas api cloudBackups deleteShardedClusterBackup --help - label: Go lang: go source: | @@ -37944,7 +37944,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getShardedClusterBackup --help + source: atlas api cloudBackups getShardedClusterBackup --help - label: Go lang: go source: | @@ -38024,7 +38024,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listShardedClusterBackups --help + source: atlas api cloudBackups listShardedClusterBackups --help - label: Go lang: go source: | @@ -38117,7 +38117,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadSharedClusterBackup --help + source: atlas api sharedTierSnapshots downloadSharedClusterBackup --help - label: Go lang: go source: | @@ -38212,7 +38212,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs createSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -38296,7 +38296,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackupRestoreJobs --help + source: atlas api sharedTierRestoreJobs listSharedClusterBackupRestoreJobs --help - label: Go lang: go source: | @@ -38385,7 +38385,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackupRestoreJob --help + source: atlas api sharedTierRestoreJobs getSharedClusterBackupRestoreJob --help - label: Go lang: go source: | @@ -38465,7 +38465,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSharedClusterBackups --help + source: atlas api sharedTierSnapshots listSharedClusterBackups --help - label: Go lang: go source: | @@ -38554,7 +38554,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSharedClusterBackup --help + source: atlas api sharedTierSnapshots getSharedClusterBackup --help - label: Go lang: go source: | @@ -38636,7 +38636,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupCheckpoints --help + source: atlas api legacyBackup listLegacyBackupCheckpoints --help - label: Go lang: go source: | @@ -38728,7 +38728,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupCheckpoint --help + source: atlas api legacyBackup getLegacyBackupCheckpoint --help - label: Go lang: go source: | @@ -38809,7 +38809,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPinnedNamespaces --help + source: atlas api collectionLevelMetrics getPinnedNamespaces --help - label: Go lang: go source: | @@ -38903,7 +38903,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPatch --help + source: atlas api collectionLevelMetrics pinNamespacesPatch --help - label: Go lang: go source: | @@ -39001,7 +39001,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinNamespacesPut --help + source: atlas api collectionLevelMetrics pinNamespacesPut --help - label: Go lang: go source: | @@ -39093,7 +39093,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api unpinNamespaces --help + source: atlas api collectionLevelMetrics unpinNamespaces --help - label: Go lang: go source: | @@ -39190,7 +39190,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch createAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -39291,7 +39291,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesDeprecated --help + source: atlas api atlasSearch listAtlasSearchIndexesDeprecated --help - label: Go lang: go source: | @@ -39385,7 +39385,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch deleteAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -39476,7 +39476,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch getAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -39578,7 +39578,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexDeprecated --help + source: atlas api atlasSearch updateAtlasSearchIndexDeprecated --help - label: Go lang: go source: | @@ -39664,7 +39664,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedNamespace --help + source: atlas api globalClusters getManagedNamespace --help - label: Go lang: go source: | @@ -39745,7 +39745,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAllCustomZoneMappings --help + source: atlas api globalClusters deleteAllCustomZoneMappings --help - label: Go lang: go source: | @@ -39835,7 +39835,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomZoneMapping --help + source: atlas api globalClusters createCustomZoneMapping --help - label: Go lang: go source: | @@ -39932,7 +39932,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteManagedNamespace --help + source: atlas api globalClusters deleteManagedNamespace --help - label: Go lang: go source: | @@ -40024,7 +40024,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createManagedNamespace --help + source: atlas api globalClusters createManagedNamespace --help - label: Go lang: go source: | @@ -40181,7 +40181,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createRollingIndex --help + source: atlas api rollingIndex createRollingIndex --help - label: Go lang: go source: | @@ -40269,7 +40269,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOnlineArchives --help + source: atlas api onlineArchive listOnlineArchives --help - label: Go lang: go source: | @@ -40362,7 +40362,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOnlineArchive --help + source: atlas api onlineArchive createOnlineArchive --help - label: Go lang: go source: | @@ -40458,7 +40458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOnlineArchive --help + source: atlas api onlineArchive deleteOnlineArchive --help - label: Go lang: go source: | @@ -40551,7 +40551,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOnlineArchive --help + source: atlas api onlineArchive getOnlineArchive --help - label: Go lang: go source: | @@ -40653,7 +40653,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOnlineArchive --help + source: atlas api onlineArchive updateOnlineArchive --help - label: Go lang: go source: | @@ -40765,7 +40765,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadOnlineArchiveQueryLogs --help + source: atlas api onlineArchive downloadOnlineArchiveQueryLogs --help - label: Go lang: go source: | @@ -40852,7 +40852,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api endOutageSimulation --help + source: atlas api clusterOutageSimulation endOutageSimulation --help - label: Go lang: go source: | @@ -40936,7 +40936,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOutageSimulation --help + source: atlas api clusterOutageSimulation getOutageSimulation --help - label: Go lang: go source: | @@ -41025,7 +41025,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startOutageSimulation --help + source: atlas api clusterOutageSimulation startOutageSimulation --help - label: Go lang: go source: | @@ -41112,7 +41112,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterAdvancedConfiguration --help + source: atlas api clusters getClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -41204,7 +41204,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateClusterAdvancedConfiguration --help + source: atlas api clusters updateClusterAdvancedConfiguration --help - label: Go lang: go source: | @@ -41284,7 +41284,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api testFailover --help + source: atlas api clusters testFailover --help - label: Go lang: go source: | @@ -41383,7 +41383,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacyBackupRestoreJobs --help + source: atlas api legacyBackup listLegacyBackupRestoreJobs --help - label: Go lang: go source: | @@ -41470,7 +41470,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLegacyBackupRestoreJob --help + source: atlas api legacyBackup createLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -41567,7 +41567,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacyBackupRestoreJob --help + source: atlas api legacyBackup getLegacyBackupRestoreJob --help - label: Go lang: go source: | @@ -41649,7 +41649,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchDeployment --help + source: atlas api atlasSearch deleteAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41728,7 +41728,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchDeployment --help + source: atlas api atlasSearch getAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41816,7 +41816,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchDeployment --help + source: atlas api atlasSearch updateAtlasSearchDeployment --help - label: Go lang: go source: | @@ -41908,7 +41908,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchDeployment --help + source: atlas api atlasSearch createAtlasSearchDeployment --help - label: Go lang: go source: | @@ -42003,7 +42003,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexesCluster --help + source: atlas api atlasSearch listAtlasSearchIndexesCluster --help - label: Go lang: go source: | @@ -42094,7 +42094,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createAtlasSearchIndex --help + source: atlas api atlasSearch createAtlasSearchIndex --help - label: Go lang: go source: | @@ -42201,7 +42201,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasSearchIndexes --help + source: atlas api atlasSearch listAtlasSearchIndexes --help - label: Go lang: go source: | @@ -42302,7 +42302,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndexByName --help + source: atlas api atlasSearch deleteAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -42402,7 +42402,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndexByName --help + source: atlas api atlasSearch getAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -42511,7 +42511,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndexByName --help + source: atlas api atlasSearch updateAtlasSearchIndexByName --help - label: Go lang: go source: | @@ -42607,7 +42607,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteAtlasSearchIndex --help + source: atlas api atlasSearch deleteAtlasSearchIndex --help - label: Go lang: go source: | @@ -42704,7 +42704,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasSearchIndex --help + source: atlas api atlasSearch getAtlasSearchIndex --help - label: Go lang: go source: | @@ -42804,7 +42804,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateAtlasSearchIndex --help + source: atlas api atlasSearch updateAtlasSearchIndex --help - label: Go lang: go source: | @@ -42890,7 +42890,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshotSchedule --help + source: atlas api legacyBackup getLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -42978,7 +42978,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotSchedule --help + source: atlas api legacyBackup updateLegacySnapshotSchedule --help - label: Go lang: go source: | @@ -43074,7 +43074,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listLegacySnapshots --help + source: atlas api legacyBackup listLegacySnapshots --help - label: Go lang: go source: | @@ -43164,7 +43164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLegacySnapshot --help + source: atlas api legacyBackup deleteLegacySnapshot --help - label: Go lang: go source: | @@ -43251,7 +43251,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLegacySnapshot --help + source: atlas api legacyBackup getLegacySnapshot --help - label: Go lang: go source: | @@ -43345,7 +43345,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateLegacySnapshotRetention --help + source: atlas api legacyBackup updateLegacySnapshotRetention --help - label: Go lang: go source: | @@ -43427,7 +43427,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getClusterStatus --help + source: atlas api clusters getClusterStatus --help - label: Go lang: go source: | @@ -43518,7 +43518,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pinFeatureCompatibilityVersion --help + source: atlas api clusters pinFeatureCompatibilityVersion --help - label: Go lang: go source: | @@ -43608,7 +43608,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api unpinFeatureCompatibilityVersion --help + source: atlas api clusters unpinFeatureCompatibilityVersion --help - label: Go lang: go source: | @@ -43725,7 +43725,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostLogs --help + source: atlas api monitoringAndLogs getHostLogs --help - label: Go lang: go source: | @@ -43811,7 +43811,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCloudProviderRegions --help + source: atlas api clusters listCloudProviderRegions --help - label: Go lang: go source: | @@ -43895,7 +43895,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedCluster --help + source: atlas api clusters upgradeSharedCluster --help - label: Go lang: go source: | @@ -43983,7 +43983,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeSharedClusterToServerless --help + source: atlas api clusters upgradeSharedClusterToServerless --help - label: Go lang: go source: | @@ -44059,7 +44059,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceMetrics --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceMetrics --help - label: Go lang: go source: | @@ -44144,7 +44144,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainerByCloudProvider --help + source: atlas api networkPeering listPeeringContainerByCloudProvider --help - label: Go lang: go source: | @@ -44227,7 +44227,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringContainer --help + source: atlas api networkPeering createPeeringContainer --help - label: Go lang: go source: | @@ -44316,7 +44316,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringContainer --help + source: atlas api networkPeering deletePeeringContainer --help - label: Go lang: go source: | @@ -44394,7 +44394,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringContainer --help + source: atlas api networkPeering getPeeringContainer --help - label: Go lang: go source: | @@ -44487,7 +44487,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringContainer --help + source: atlas api networkPeering updatePeeringContainer --help - label: Go lang: go source: | @@ -44563,7 +44563,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringContainers --help + source: atlas api networkPeering listPeeringContainers --help - label: Go lang: go source: | @@ -44634,7 +44634,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listCustomDatabaseRoles --help + source: atlas api customDatabaseRoles listCustomDatabaseRoles --help - label: Go lang: go source: | @@ -44717,7 +44717,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCustomDatabaseRole --help + source: atlas api customDatabaseRoles createCustomDatabaseRole --help - label: Go lang: go source: | @@ -44800,7 +44800,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteCustomDatabaseRole --help + source: atlas api customDatabaseRoles deleteCustomDatabaseRole --help - label: Go lang: go source: | @@ -44876,7 +44876,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCustomDatabaseRole --help + source: atlas api customDatabaseRoles getCustomDatabaseRole --help - label: Go lang: go source: | @@ -44965,7 +44965,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateCustomDatabaseRole --help + source: atlas api customDatabaseRoles updateCustomDatabaseRole --help - label: Go lang: go source: | @@ -45049,7 +45049,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFederatedDatabases --help + source: atlas api dataFederation listFederatedDatabases --help - label: Go lang: go source: | @@ -45130,7 +45130,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFederatedDatabase --help + source: atlas api dataFederation createFederatedDatabase --help - label: Go lang: go source: | @@ -45209,7 +45209,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFederatedDatabase --help + source: atlas api dataFederation deleteFederatedDatabase --help - label: Go lang: go source: | @@ -45286,7 +45286,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederatedDatabase --help + source: atlas api dataFederation getFederatedDatabase --help - label: Go lang: go source: | @@ -45375,7 +45375,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFederatedDatabase --help + source: atlas api dataFederation updateFederatedDatabase --help - label: Go lang: go source: | @@ -45458,7 +45458,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimits --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimits --help - label: Go lang: go source: | @@ -45551,7 +45551,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOneDataFederationInstanceQueryLimit --help + source: atlas api dataFederation deleteOneDataFederationInstanceQueryLimit --help - label: Go lang: go source: | @@ -45644,7 +45644,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnFederatedDatabaseQueryLimit --help + source: atlas api dataFederation returnFederatedDatabaseQueryLimit --help - label: Go lang: go source: | @@ -45747,7 +45747,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOneDataFederationQueryLimit --help + source: atlas api dataFederation createOneDataFederationQueryLimit --help - label: Go lang: go source: | @@ -45850,7 +45850,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFederatedDatabaseQueryLogs --help + source: atlas api dataFederation downloadFederatedDatabaseQueryLogs --help - label: Go lang: go source: | @@ -45924,7 +45924,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUsers --help + source: atlas api databaseUsers listDatabaseUsers --help - label: Go lang: go source: | @@ -46098,7 +46098,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUser --help + source: atlas api databaseUsers createDatabaseUser --help - label: Go lang: go source: | @@ -46201,7 +46201,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDatabaseUser --help + source: atlas api databaseUsers deleteDatabaseUser --help - label: Go lang: go source: | @@ -46297,7 +46297,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseUser --help + source: atlas api databaseUsers getDatabaseUser --help - label: Go lang: go source: | @@ -46406,7 +46406,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateDatabaseUser --help + source: atlas api databaseUsers updateDatabaseUser --help - label: Go lang: go source: | @@ -46490,7 +46490,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabaseUserCertificates --help + source: atlas api x509Authentication listDatabaseUserCertificates --help - label: Go lang: go source: | @@ -46588,7 +46588,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDatabaseUserCertificate --help + source: atlas api x509Authentication createDatabaseUserCertificate --help - label: Go lang: go source: | @@ -46707,7 +46707,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByClusterName --help + source: atlas api accessTracking listAccessLogsByClusterName --help - label: Go lang: go source: | @@ -46819,7 +46819,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAccessLogsByHostname --help + source: atlas api accessTracking listAccessLogsByHostname --help - label: Go lang: go source: | @@ -46891,7 +46891,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRest --help - label: Go lang: go source: | @@ -46984,7 +46984,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateEncryptionAtRest --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement updateEncryptionAtRest --help - label: Go lang: go source: | @@ -47065,7 +47065,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpointsForCloudProvider --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpointsForCloudProvider --help - label: Go lang: go source: | @@ -47148,7 +47148,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement createEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -47245,7 +47245,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api requestEncryptionAtRestPrivateEndpointDeletion --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement requestEncryptionAtRestPrivateEndpointDeletion --help - label: Go lang: go source: | @@ -47330,7 +47330,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getEncryptionAtRestPrivateEndpoint --help + source: atlas api encryptionAtRestUsingCustomerKeyManagement getEncryptionAtRestPrivateEndpoint --help - label: Go lang: go source: | @@ -47456,7 +47456,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectEvents --help + source: atlas api events listProjectEvents --help - label: Go lang: go source: | @@ -47545,7 +47545,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectEvent --help + source: atlas api events getProjectEvent --help - label: Go lang: go source: | @@ -47616,7 +47616,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listMetricTypes --help + source: atlas api monitoringAndLogs listMetricTypes --help - label: Go lang: go source: | @@ -47717,7 +47717,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getIndexMetrics --help + source: atlas api monitoringAndLogs getIndexMetrics --help - label: Go lang: go source: | @@ -47817,7 +47817,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listIndexMetrics --help + source: atlas api monitoringAndLogs listIndexMetrics --help - label: Go lang: go source: | @@ -47916,7 +47916,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMeasurements --help + source: atlas api monitoringAndLogs getMeasurements --help - label: Go lang: go source: | @@ -47992,7 +47992,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listThirdPartyIntegrations --help + source: atlas api thirdPartyIntegrations listThirdPartyIntegrations --help - label: Go lang: go source: | @@ -48083,7 +48083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations deleteThirdPartyIntegration --help - label: Go lang: go source: | @@ -48173,7 +48173,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations getThirdPartyIntegration --help - label: Go lang: go source: | @@ -48275,7 +48275,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations createThirdPartyIntegration --help - label: Go lang: go source: | @@ -48379,7 +48379,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateThirdPartyIntegration --help + source: atlas api thirdPartyIntegrations updateThirdPartyIntegration --help - label: Go lang: go source: | @@ -48461,7 +48461,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectInvitations --help + source: atlas api projects listProjectInvitations --help - label: Go lang: go source: | @@ -48542,7 +48542,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitation --help + source: atlas api projects updateProjectInvitation --help - label: Go lang: go source: | @@ -48623,7 +48623,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectInvitation --help + source: atlas api projects createProjectInvitation --help - label: Go lang: go source: | @@ -48706,7 +48706,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectInvitation --help + source: atlas api projects deleteProjectInvitation --help - label: Go lang: go source: | @@ -48787,7 +48787,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectInvitation --help + source: atlas api projects getProjectInvitation --help - label: Go lang: go source: | @@ -48876,7 +48876,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectInvitationById --help + source: atlas api projects updateProjectInvitationById --help - label: Go lang: go source: | @@ -48952,7 +48952,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllIPAddresses --help + source: atlas api projects returnAllIpaddresses --help - label: Go lang: go source: | @@ -49029,7 +49029,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectLimits --help + source: atlas api projects listProjectLimits --help - label: Go lang: go source: | @@ -49138,7 +49138,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectLimit --help + source: atlas api projects deleteProjectLimit --help - label: Go lang: go source: | @@ -49248,7 +49248,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLimit --help + source: atlas api projects getProjectLimit --help - label: Go lang: go source: | @@ -49368,7 +49368,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setProjectLimit --help + source: atlas api projects setProjectLimit --help - label: Go lang: go source: | @@ -49462,7 +49462,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushMigration --help + source: atlas api cloudMigrationService createPushMigration --help - label: Go lang: go source: | @@ -49540,7 +49540,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushMigration --help + source: atlas api cloudMigrationService getPushMigration --help - label: Go lang: go source: | @@ -49614,7 +49614,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api cutoverMigration --help + source: atlas api cloudMigrationService cutoverMigration --help - label: Go lang: go source: | @@ -49701,7 +49701,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateMigration --help + source: atlas api cloudMigrationService validateMigration --help - label: Go lang: go source: | @@ -49789,7 +49789,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getValidationStatus --help + source: atlas api cloudMigrationService getValidationStatus --help - label: Go lang: go source: | @@ -49857,7 +49857,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resetMaintenanceWindow --help + source: atlas api maintenanceWindows resetMaintenanceWindow --help - label: Go lang: go source: | @@ -49925,7 +49925,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getMaintenanceWindow --help + source: atlas api maintenanceWindows getMaintenanceWindow --help - label: Go lang: go source: | @@ -50001,7 +50001,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateMaintenanceWindow --help + source: atlas api maintenanceWindows updateMaintenanceWindow --help - label: Go lang: go source: | @@ -50073,7 +50073,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleMaintenanceAutoDefer --help + source: atlas api maintenanceWindows toggleMaintenanceAutoDefer --help - label: Go lang: go source: | @@ -50145,7 +50145,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deferMaintenanceWindow --help + source: atlas api maintenanceWindows deferMaintenanceWindow --help - label: Go lang: go source: | @@ -50218,7 +50218,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getManagedSlowMs --help + source: atlas api performanceAdvisor getManagedSlowMs --help - label: Go lang: go source: | @@ -50287,7 +50287,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableSlowOperationThresholding --help + source: atlas api performanceAdvisor disableSlowOperationThresholding --help - label: Go lang: go source: | @@ -50356,7 +50356,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api enableSlowOperationThresholding --help + source: atlas api performanceAdvisor enableSlowOperationThresholding --help - label: Go lang: go source: | @@ -50470,7 +50470,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectLTSVersions --help + source: atlas api projects getProjectLtsversions --help - label: Go lang: go source: | @@ -50554,7 +50554,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPeeringConnections --help + source: atlas api networkPeering listPeeringConnections --help - label: Go lang: go source: | @@ -50638,7 +50638,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPeeringConnection --help + source: atlas api networkPeering createPeeringConnection --help - label: Go lang: go source: | @@ -50722,7 +50722,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePeeringConnection --help + source: atlas api networkPeering deletePeeringConnection --help - label: Go lang: go source: | @@ -50801,7 +50801,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPeeringConnection --help + source: atlas api networkPeering getPeeringConnection --help - label: Go lang: go source: | @@ -50891,7 +50891,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePeeringConnection --help + source: atlas api networkPeering updatePeeringConnection --help - label: Go lang: go source: | @@ -50967,7 +50967,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelines --help + source: atlas api dataLakePipelines listPipelines --help - label: Go lang: go source: | @@ -51045,7 +51045,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPipeline --help + source: atlas api dataLakePipelines createPipeline --help - label: Go lang: go source: | @@ -51128,7 +51128,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipeline --help + source: atlas api dataLakePipelines deletePipeline --help - label: Go lang: go source: | @@ -51207,7 +51207,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipeline --help + source: atlas api dataLakePipelines getPipeline --help - label: Go lang: go source: | @@ -51296,7 +51296,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePipeline --help + source: atlas api dataLakePipelines updatePipeline --help - label: Go lang: go source: | @@ -51382,7 +51382,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSchedules --help + source: atlas api dataLakePipelines listPipelineSchedules --help - label: Go lang: go source: | @@ -51472,7 +51472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineSnapshots --help + source: atlas api dataLakePipelines listPipelineSnapshots --help - label: Go lang: go source: | @@ -51552,7 +51552,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api pausePipeline --help + source: atlas api dataLakePipelines pausePipeline --help - label: Go lang: go source: | @@ -51636,7 +51636,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api resumePipeline --help + source: atlas api dataLakePipelines resumePipeline --help - label: Go lang: go source: | @@ -51730,7 +51730,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPipelineRuns --help + source: atlas api dataLakePipelines listPipelineRuns --help - label: Go lang: go source: | @@ -51820,7 +51820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePipelineRunDataset --help + source: atlas api dataLakePipelines deletePipelineRunDataset --help - label: Go lang: go source: | @@ -51909,7 +51909,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPipelineRun --help + source: atlas api dataLakePipelines getPipelineRun --help - label: Go lang: go source: | @@ -51996,7 +51996,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api triggerSnapshotIngestion --help + source: atlas api dataLakePipelines triggerSnapshotIngestion --help - label: Go lang: go source: | @@ -52082,7 +52082,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateEndpointServices --help + source: atlas api privateEndpointServices listPrivateEndpointServices --help - label: Go lang: go source: | @@ -52171,7 +52171,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpointService --help + source: atlas api privateEndpointServices deletePrivateEndpointService --help - label: Go lang: go source: | @@ -52261,7 +52261,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpointService --help + source: atlas api privateEndpointServices getPrivateEndpointService --help - label: Go lang: go source: | @@ -52363,7 +52363,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpoint --help + source: atlas api privateEndpointServices createPrivateEndpoint --help - label: Go lang: go source: | @@ -52463,7 +52463,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateEndpoint --help + source: atlas api privateEndpointServices deletePrivateEndpoint --help - label: Go lang: go source: | @@ -52560,7 +52560,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateEndpoint --help + source: atlas api privateEndpointServices getPrivateEndpoint --help - label: Go lang: go source: | @@ -52639,7 +52639,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateEndpointService --help + source: atlas api privateEndpointServices createPrivateEndpointService --help - label: Go lang: go source: | @@ -52714,7 +52714,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices getRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -52791,7 +52791,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api toggleRegionalizedPrivateEndpointSetting --help + source: atlas api privateEndpointServices toggleRegionalizedPrivateEndpointSetting --help - label: Go lang: go source: | @@ -52875,7 +52875,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessPrivateEndpoints --help + source: atlas api serverlessPrivateEndpoints listServerlessPrivateEndpoints --help - label: Go lang: go source: | @@ -52965,7 +52965,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints createServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -53056,7 +53056,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints deleteServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -53142,7 +53142,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints getServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -53235,7 +53235,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessPrivateEndpoint --help + source: atlas api serverlessPrivateEndpoints updateServerlessPrivateEndpoint --help - label: Go lang: go source: | @@ -53312,7 +53312,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyConnectViaPeeringOnlyModeForOneProject --help + source: atlas api networkPeering verifyConnectViaPeeringOnlyModeForOneProject --help - label: Go lang: go source: | @@ -53393,7 +53393,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disablePeering --help + source: atlas api networkPeering disablePeering --help - label: Go lang: go source: | @@ -53473,7 +53473,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDataFederationPrivateEndpoints --help + source: atlas api dataFederation listDataFederationPrivateEndpoints --help - label: Go lang: go source: | @@ -53569,7 +53569,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createDataFederationPrivateEndpoint --help + source: atlas api dataFederation createDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -53653,7 +53653,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteDataFederationPrivateEndpoint --help + source: atlas api dataFederation deleteDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -53734,7 +53734,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDataFederationPrivateEndpoint --help + source: atlas api dataFederation getDataFederationPrivateEndpoint --help - label: Go lang: go source: | @@ -53806,7 +53806,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listAtlasProcesses --help + source: atlas api monitoringAndLogs listAtlasProcesses --help - label: Go lang: go source: | @@ -53883,7 +53883,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAtlasProcess --help + source: atlas api monitoringAndLogs getAtlasProcess --help - label: Go lang: go source: | @@ -53995,7 +53995,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespaceHostMeasurements --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespaceHostMeasurements --help - label: Go lang: go source: | @@ -54067,7 +54067,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCollStatsLatencyNamespacesForHost --help + source: atlas api collectionLevelMetrics getCollStatsLatencyNamespacesForHost --help - label: Go lang: go source: | @@ -54147,7 +54147,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDatabases --help + source: atlas api monitoringAndLogs listDatabases --help - label: Go lang: go source: | @@ -54230,7 +54230,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabase --help + source: atlas api monitoringAndLogs getDatabase --help - label: Go lang: go source: | @@ -54339,7 +54339,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDatabaseMeasurements --help + source: atlas api monitoringAndLogs getDatabaseMeasurements --help - label: Go lang: go source: | @@ -54419,7 +54419,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskPartitions --help + source: atlas api monitoringAndLogs listDiskPartitions --help - label: Go lang: go source: | @@ -54501,7 +54501,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDiskMeasurements --help + source: atlas api monitoringAndLogs listDiskMeasurements --help - label: Go lang: go source: | @@ -54626,7 +54626,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getDiskMeasurements --help + source: atlas api monitoringAndLogs getDiskMeasurements --help - label: Go lang: go source: | @@ -54862,7 +54862,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getHostMeasurements --help + source: atlas api monitoringAndLogs getHostMeasurements --help - label: Go lang: go source: | @@ -54959,7 +54959,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueryNamespaces --help + source: atlas api performanceAdvisor listSlowQueryNamespaces --help - label: Go lang: go source: | @@ -55073,7 +55073,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSlowQueries --help + source: atlas api performanceAdvisor listSlowQueries --help - label: Go lang: go source: | @@ -55194,7 +55194,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSuggestedIndexes --help + source: atlas api performanceAdvisor listSuggestedIndexes --help - label: Go lang: go source: | @@ -55267,7 +55267,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport deletePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -55339,7 +55339,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport getPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -55419,7 +55419,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updatePushBasedLogConfiguration --help + source: atlas api pushBasedLogExport updatePushBasedLogConfiguration --help - label: Go lang: go source: | @@ -55503,7 +55503,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPushBasedLogConfiguration --help + source: atlas api pushBasedLogExport createPushBasedLogConfiguration --help - label: Go lang: go source: | @@ -55588,7 +55588,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api loadSampleDataset --help + source: atlas api clusters loadSampleDataset --help - label: Go lang: go source: | @@ -55669,7 +55669,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getSampleDatasetLoadStatus --help + source: atlas api clusters getSampleDatasetLoadStatus --help - label: Go lang: go source: | @@ -55741,7 +55741,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessInstances --help + source: atlas api serverlessInstances listServerlessInstances --help - label: Go lang: go source: | @@ -55820,7 +55820,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessInstance --help + source: atlas api serverlessInstances createServerlessInstance --help - label: Go lang: go source: | @@ -55907,7 +55907,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackupRestoreJobs --help + source: atlas api cloudBackups listServerlessBackupRestoreJobs --help - label: Go lang: go source: | @@ -55997,7 +55997,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServerlessBackupRestoreJob --help + source: atlas api cloudBackups createServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -56090,7 +56090,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackupRestoreJob --help + source: atlas api cloudBackups getServerlessBackupRestoreJob --help - label: Go lang: go source: | @@ -56173,7 +56173,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServerlessBackups --help + source: atlas api cloudBackups listServerlessBackups --help - label: Go lang: go source: | @@ -56262,7 +56262,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessBackup --help + source: atlas api cloudBackups getServerlessBackup --help - label: Go lang: go source: | @@ -56340,7 +56340,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessAutoIndexing --help + source: atlas api performanceAdvisor getServerlessAutoIndexing --help - label: Go lang: go source: | @@ -56422,7 +56422,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api setServerlessAutoIndexing --help + source: atlas api performanceAdvisor setServerlessAutoIndexing --help - label: Go lang: go source: | @@ -56508,7 +56508,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServerlessInstance --help + source: atlas api serverlessInstances deleteServerlessInstance --help - label: Go lang: go source: | @@ -56589,7 +56589,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServerlessInstance --help + source: atlas api serverlessInstances getServerlessInstance --help - label: Go lang: go source: | @@ -56675,7 +56675,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServerlessInstance --help + source: atlas api serverlessInstances updateServerlessInstance --help - label: Go lang: go source: | @@ -56752,7 +56752,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccounts --help + source: atlas api groups listProjectServiceAccounts --help - label: Go lang: go source: | @@ -56830,7 +56830,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccount --help + source: atlas api groups createProjectServiceAccount --help - label: Go lang: go source: | @@ -56912,7 +56912,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccount --help + source: atlas api groups deleteProjectServiceAccount --help - label: Go lang: go source: | @@ -56988,7 +56988,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectServiceAccount --help + source: atlas api groups getProjectServiceAccount --help - label: Go lang: go source: | @@ -57073,7 +57073,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectServiceAccount --help + source: atlas api groups updateProjectServiceAccount --help - label: Go lang: go source: | @@ -57164,7 +57164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectServiceAccount --help + source: atlas api groups addProjectServiceAccount --help - label: Go lang: go source: | @@ -57241,7 +57241,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectSettings --help + source: atlas api projects getProjectSettings --help - label: Go lang: go source: | @@ -57320,7 +57320,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectSettings --help + source: atlas api projects updateProjectSettings --help - label: Go lang: go source: | @@ -57395,7 +57395,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamInstances --help + source: atlas api streams listStreamInstances --help - label: Go lang: go source: | @@ -57472,7 +57472,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstance --help + source: atlas api streams createStreamInstance --help - label: Go lang: go source: | @@ -57555,7 +57555,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamInstance --help + source: atlas api streams deleteStreamInstance --help - label: Go lang: go source: | @@ -57637,7 +57637,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamInstance --help + source: atlas api streams getStreamInstance --help - label: Go lang: go source: | @@ -57724,7 +57724,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamInstance --help + source: atlas api streams updateStreamInstance --help - label: Go lang: go source: | @@ -57828,7 +57828,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadStreamTenantAuditLogs --help + source: atlas api streams downloadStreamTenantAuditLogs --help - label: Go lang: go source: | @@ -57909,7 +57909,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamConnections --help + source: atlas api streams listStreamConnections --help - label: Go lang: go source: | @@ -57994,7 +57994,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamConnection --help + source: atlas api streams createStreamConnection --help - label: Go lang: go source: | @@ -58083,7 +58083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamConnection --help + source: atlas api streams deleteStreamConnection --help - label: Go lang: go source: | @@ -58164,7 +58164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamConnection --help + source: atlas api streams getStreamConnection --help - label: Go lang: go source: | @@ -58257,7 +58257,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateStreamConnection --help + source: atlas api streams updateStreamConnection --help - label: Go lang: go source: | @@ -58347,7 +58347,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamProcessor --help + source: atlas api streams createStreamProcessor --help - label: Go lang: go source: | @@ -58434,7 +58434,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteStreamProcessor --help + source: atlas api streams deleteStreamProcessor --help - label: Go lang: go source: | @@ -58518,7 +58518,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getStreamProcessor --help + source: atlas api streams getStreamProcessor --help - label: Go lang: go source: | @@ -58603,7 +58603,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startStreamProcessor --help + source: atlas api streams startStreamProcessor --help - label: Go lang: go source: | @@ -58692,7 +58692,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api stopStreamProcessor --help + source: atlas api streams stopStreamProcessor --help - label: Go lang: go source: | @@ -58778,7 +58778,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listStreamProcessors --help + source: atlas api streams listStreamProcessors --help - label: Go lang: go source: | @@ -58856,7 +58856,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectTeams --help + source: atlas api teams listProjectTeams --help - label: Go lang: go source: | @@ -58942,7 +58942,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addAllTeamsToProject --help + source: atlas api teams addAllTeamsToProject --help - label: Go lang: go source: | @@ -59030,7 +59030,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectTeam --help + source: atlas api teams removeProjectTeam --help - label: Go lang: go source: | @@ -59123,7 +59123,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateTeamRoles --help + source: atlas api teams updateTeamRoles --help - label: Go lang: go source: | @@ -59196,7 +59196,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfiguration --help + source: atlas api ldapConfiguration getLdapconfiguration --help - label: Go lang: go source: | @@ -59276,7 +59276,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api saveLDAPConfiguration --help + source: atlas api ldapConfiguration saveLdapconfiguration --help - label: Go lang: go source: | @@ -59351,7 +59351,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableCustomerManagedX509 --help + source: atlas api x509Authentication disableCustomerManagedX509 --help - label: Go lang: go source: | @@ -59420,7 +59420,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLDAPConfiguration --help + source: atlas api ldapConfiguration deleteLdapconfiguration --help - label: Go lang: go source: | @@ -59498,7 +59498,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api verifyLDAPConfiguration --help + source: atlas api ldapConfiguration verifyLdapconfiguration --help - label: Go lang: go source: | @@ -59580,7 +59580,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getLDAPConfigurationStatus --help + source: atlas api ldapConfiguration getLdapconfigurationStatus --help - label: Go lang: go source: | @@ -59664,7 +59664,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api projects listProjectUsers --help - label: Go lang: go source: | @@ -59744,7 +59744,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api projects removeProjectUser --help - label: Go lang: go source: | @@ -59833,7 +59833,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectRoles --help + source: atlas api projects updateProjectRoles --help - label: Go lang: go source: | @@ -59909,7 +59909,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listUSSInstances --help + source: atlas api ussInstances listUssinstances --help - label: Go lang: go source: | @@ -59988,7 +59988,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUSSInstance --help + source: atlas api ussInstances createUssinstance --help - label: Go lang: go source: | @@ -60074,7 +60074,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteUSSInstance --help + source: atlas api ussInstances deleteUssinstance --help - label: Go lang: go source: | @@ -60157,7 +60157,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUSSInstance --help + source: atlas api ussInstances getUssinstance --help - label: Go lang: go source: | @@ -60243,7 +60243,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateUSSInstance --help + source: atlas api ussInstances updateUssinstance --help - label: Go lang: go source: | @@ -60322,7 +60322,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api migrateProjectToAnotherOrg --help + source: atlas api projects migrateProjectToAnotherOrg --help - label: Go lang: go source: | @@ -60408,7 +60408,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectByName --help + source: atlas api projects getProjectByName --help - label: Go lang: go source: | @@ -60490,7 +60490,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizations --help + source: atlas api organizations listOrganizations --help - label: Go lang: go source: | @@ -60572,7 +60572,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganization --help + source: atlas api organizations createOrganization --help - label: Go lang: go source: | @@ -60657,7 +60657,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganization --help + source: atlas api organizations deleteOrganization --help - label: Go lang: go source: | @@ -60731,7 +60731,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganization --help + source: atlas api organizations getOrganization --help - label: Go lang: go source: | @@ -60812,7 +60812,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameOrganization --help + source: atlas api organizations renameOrganization --help - label: Go lang: go source: | @@ -60891,7 +60891,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeys --help + source: atlas api programmaticApiKeys listApiKeys --help - label: Go lang: go source: | @@ -60969,7 +60969,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKey --help + source: atlas api programmaticApiKeys createApiKey --help - label: Go lang: go source: | @@ -61054,7 +61054,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKey --help + source: atlas api programmaticApiKeys deleteApiKey --help - label: Go lang: go source: | @@ -61134,7 +61134,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKey --help + source: atlas api programmaticApiKeys getApiKey --help - label: Go lang: go source: | @@ -61223,7 +61223,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateApiKey --help + source: atlas api programmaticApiKeys updateApiKey --help - label: Go lang: go source: | @@ -61311,7 +61311,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listApiKeyAccessListsEntries --help + source: atlas api programmaticApiKeys listApiKeyAccessListsEntries --help - label: Go lang: go source: | @@ -61404,7 +61404,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createApiKeyAccessList --help + source: atlas api programmaticApiKeys createApiKeyAccessList --help - label: Go lang: go source: | @@ -61501,7 +61501,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteApiKeyAccessListEntry --help + source: atlas api programmaticApiKeys deleteApiKeyAccessListEntry --help - label: Go lang: go source: | @@ -61591,7 +61591,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getApiKeyAccessList --help + source: atlas api programmaticApiKeys getApiKeyAccessList --help - label: Go lang: go source: | @@ -61668,7 +61668,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess --help + source: atlas api invoices createCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -61759,7 +61759,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createCostExplorerQueryProcess_1 --help + source: atlas api invoices createCostExplorerQueryProcess1 --help - label: Go lang: go source: | @@ -61863,7 +61863,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationEvents --help + source: atlas api events listOrganizationEvents --help - label: Go lang: go source: | @@ -61952,7 +61952,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationEvent --help + source: atlas api events getOrganizationEvent --help - label: Go lang: go source: | @@ -62025,7 +62025,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFederationSettings --help + source: atlas api federatedAuthentication getFederationSettings --help - label: Go lang: go source: | @@ -62114,7 +62114,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationProjects --help + source: atlas api organizations listOrganizationProjects --help - label: Go lang: go source: | @@ -62195,7 +62195,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationInvitations --help + source: atlas api organizations listOrganizationInvitations --help - label: Go lang: go source: | @@ -62274,7 +62274,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitation --help + source: atlas api organizations updateOrganizationInvitation --help - label: Go lang: go source: | @@ -62357,7 +62357,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationInvitation --help + source: atlas api organizations createOrganizationInvitation --help - label: Go lang: go source: | @@ -62440,7 +62440,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrganizationInvitation --help + source: atlas api organizations deleteOrganizationInvitation --help - label: Go lang: go source: | @@ -62520,7 +62520,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationInvitation --help + source: atlas api organizations getOrganizationInvitation --help - label: Go lang: go source: | @@ -62608,7 +62608,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationInvitationById --help + source: atlas api organizations updateOrganizationInvitationById --help - label: Go lang: go source: | @@ -62745,7 +62745,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listInvoices --help + source: atlas api invoices listInvoices --help - label: Go lang: go source: | @@ -62831,7 +62831,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getInvoice --help + source: atlas api invoices getInvoice --help - label: Go lang: go source: | @@ -62918,7 +62918,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadInvoiceCSV --help + source: atlas api invoices downloadInvoiceCsv --help - label: Go lang: go source: | @@ -63006,7 +63006,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api queryLineItemsFromSingleInvoice --help + source: atlas api invoices queryLineItemsFromSingleInvoice --help - label: Go lang: go source: | @@ -63077,7 +63077,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPendingInvoices --help + source: atlas api invoices listPendingInvoices --help - label: Go lang: go source: | @@ -63150,7 +63150,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSourceProjects --help + source: atlas api cloudMigrationService listSourceProjects --help - label: Go lang: go source: | @@ -63220,7 +63220,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteLinkToken --help + source: atlas api cloudMigrationService deleteLinkToken --help - label: Go lang: go source: | @@ -63297,7 +63297,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createLinkToken --help + source: atlas api cloudMigrationService createLinkToken --help - label: Go lang: go source: | @@ -63374,7 +63374,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccounts --help + source: atlas api organizations listServiceAccounts --help - label: Go lang: go source: | @@ -63451,7 +63451,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccount --help + source: atlas api organizations createServiceAccount --help - label: Go lang: go source: | @@ -63530,7 +63530,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccount --help + source: atlas api organizations deleteServiceAccount --help - label: Go lang: go source: | @@ -63606,7 +63606,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServiceAccount --help + source: atlas api organizations getServiceAccount --help - label: Go lang: go source: | @@ -63691,7 +63691,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServiceAccount --help + source: atlas api organizations updateServiceAccount --help - label: Go lang: go source: | @@ -63774,7 +63774,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountProjects --help + source: atlas api organizations listServiceAccountProjects --help - label: Go lang: go source: | @@ -63858,7 +63858,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountSecret --help + source: atlas api organizations createServiceAccountSecret --help - label: Go lang: go source: | @@ -63943,7 +63943,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountSecret --help + source: atlas api organizations deleteServiceAccountSecret --help - label: Go lang: go source: | @@ -64016,7 +64016,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationSettings --help + source: atlas api organizations getOrganizationSettings --help - label: Go lang: go source: | @@ -64095,7 +64095,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationSettings --help + source: atlas api organizations updateOrganizationSettings --help - label: Go lang: go source: | @@ -64178,7 +64178,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationTeams --help + source: atlas api teams listOrganizationTeams --help - label: Go lang: go source: | @@ -64262,7 +64262,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createTeam --help + source: atlas api teams createTeam --help - label: Go lang: go source: | @@ -64351,7 +64351,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteTeam --help + source: atlas api teams deleteTeam --help - label: Go lang: go source: | @@ -64435,7 +64435,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamById --help + source: atlas api teams getTeamById --help - label: Go lang: go source: | @@ -64528,7 +64528,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api renameTeam --help + source: atlas api teams renameTeam --help - label: Go lang: go source: | @@ -64621,7 +64621,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api teams listTeamUsers --help - label: Go lang: go source: | @@ -64716,7 +64716,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addTeamUser --help + source: atlas api teams addTeamUser --help - label: Go lang: go source: | @@ -64812,7 +64812,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeTeamUser --help + source: atlas api teams removeTeamUser --help - label: Go lang: go source: | @@ -64894,7 +64894,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getTeamByName --help + source: atlas api teams getTeamByName --help - label: Go lang: go source: | @@ -64970,7 +64970,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api organizations listOrganizationUsers --help - label: Go lang: go source: | @@ -65053,7 +65053,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api organizations removeOrganizationUser --help - label: Go lang: go source: | @@ -65142,7 +65142,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationRoles --help + source: atlas api organizations updateOrganizationRoles --help - label: Go lang: go source: | @@ -65209,7 +65209,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api returnAllControlPlaneIPAddresses --help + source: atlas api root returnAllControlPlaneIpaddresses --help - label: Go lang: go source: | @@ -65291,7 +65291,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createUser --help + source: atlas api mongoDbCloudUsers createUser --help - label: Go lang: go source: | @@ -65374,7 +65374,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUser --help + source: atlas api mongoDbCloudUsers getUser --help - label: Go lang: go source: | @@ -65451,7 +65451,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getUserByUsername --help + source: atlas api mongoDbCloudUsers getUserByUsername --help - label: Go lang: go source: |