diff --git a/admin/api_cloud_provider_access.go b/admin/api_cloud_provider_access.go index de699f1f..0d20da29 100644 --- a/admin/api_cloud_provider_access.go +++ b/admin/api_cloud_provider_access.go @@ -40,7 +40,7 @@ type CloudProviderAccessApi interface { /* CreateCloudProviderAccessRole Create One Cloud Provider Access Role - Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. + Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. For the GCP provider, if the project folder is not yet provisioned, Atlas will now create the role asynchronously. An intermediate role with status `IN_PROGRESS` will be returned, and the final service account will be provisioned. Once the GCP project is set up, subsequent requests will create the service account synchronously. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param groupId Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](#tag/Projects/operation/listProjects) endpoint to retrieve all projects to which the authenticated user has access. **NOTE**: Groups and projects are synonymous terms. Your group id is the same as your project id. For existing groups, your group/project id remains the same. The resource and corresponding endpoints use the term groups. @@ -297,7 +297,7 @@ func (r CreateCloudProviderAccessRoleApiRequest) Execute() (*CloudProviderAccess /* CreateCloudProviderAccessRole Create One Cloud Provider Access Role -Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. +Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. For the GCP provider, if the project folder is not yet provisioned, Atlas will now create the role asynchronously. An intermediate role with status `IN_PROGRESS` will be returned, and the final service account will be provisioned. Once the GCP project is set up, subsequent requests will create the service account synchronously. @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param groupId Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](#tag/Projects/operation/listProjects) endpoint to retrieve all projects to which the authenticated user has access. **NOTE**: Groups and projects are synonymous terms. Your group id is the same as your project id. For existing groups, your group/project id remains the same. The resource and corresponding endpoints use the term groups. diff --git a/admin/model_cloud_provider_access_awsiam_role.go b/admin/model_cloud_provider_access_awsiam_role.go index f8db98dd..9d49f94b 100644 --- a/admin/model_cloud_provider_access_awsiam_role.go +++ b/admin/model_cloud_provider_access_awsiam_role.go @@ -44,6 +44,9 @@ type CloudProviderAccessAWSIAMRole struct { TenantId *string `json:"tenantId,omitempty"` // Email address for the Google Service Account created by Atlas. GcpServiceAccountForAtlas *string `json:"gcpServiceAccountForAtlas,omitempty"` + // Provision status of the service account. + // Read only field. + Status *string `json:"status,omitempty"` } // NewCloudProviderAccessAWSIAMRole instantiates a new CloudProviderAccessAWSIAMRole object @@ -516,3 +519,36 @@ func (o *CloudProviderAccessAWSIAMRole) HasGcpServiceAccountForAtlas() bool { func (o *CloudProviderAccessAWSIAMRole) SetGcpServiceAccountForAtlas(v string) { o.GcpServiceAccountForAtlas = &v } + +// GetStatus returns the Status field value if set, zero value otherwise +func (o *CloudProviderAccessAWSIAMRole) GetStatus() string { + if o == nil || IsNil(o.Status) { + var ret string + return ret + } + return *o.Status +} + +// GetStatusOk returns a tuple with the Status field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessAWSIAMRole) GetStatusOk() (*string, bool) { + if o == nil || IsNil(o.Status) { + return nil, false + } + + return o.Status, true +} + +// HasStatus returns a boolean if a field has been set. +func (o *CloudProviderAccessAWSIAMRole) HasStatus() bool { + if o != nil && !IsNil(o.Status) { + return true + } + + return false +} + +// SetStatus gets a reference to the given string and assigns it to the Status field. +func (o *CloudProviderAccessAWSIAMRole) SetStatus(v string) { + o.Status = &v +} diff --git a/admin/model_cloud_provider_access_azure_service_principal.go b/admin/model_cloud_provider_access_azure_service_principal.go index 208c3dc7..595a75ef 100644 --- a/admin/model_cloud_provider_access_azure_service_principal.go +++ b/admin/model_cloud_provider_access_azure_service_principal.go @@ -44,6 +44,9 @@ type CloudProviderAccessAzureServicePrincipal struct { RoleId *string `json:"roleId,omitempty"` // Email address for the Google Service Account created by Atlas. GcpServiceAccountForAtlas *string `json:"gcpServiceAccountForAtlas,omitempty"` + // Provision status of the service account. + // Read only field. + Status *string `json:"status,omitempty"` } // NewCloudProviderAccessAzureServicePrincipal instantiates a new CloudProviderAccessAzureServicePrincipal object @@ -516,3 +519,36 @@ func (o *CloudProviderAccessAzureServicePrincipal) HasGcpServiceAccountForAtlas( func (o *CloudProviderAccessAzureServicePrincipal) SetGcpServiceAccountForAtlas(v string) { o.GcpServiceAccountForAtlas = &v } + +// GetStatus returns the Status field value if set, zero value otherwise +func (o *CloudProviderAccessAzureServicePrincipal) GetStatus() string { + if o == nil || IsNil(o.Status) { + var ret string + return ret + } + return *o.Status +} + +// GetStatusOk returns a tuple with the Status field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessAzureServicePrincipal) GetStatusOk() (*string, bool) { + if o == nil || IsNil(o.Status) { + return nil, false + } + + return o.Status, true +} + +// HasStatus returns a boolean if a field has been set. +func (o *CloudProviderAccessAzureServicePrincipal) HasStatus() bool { + if o != nil && !IsNil(o.Status) { + return true + } + + return false +} + +// SetStatus gets a reference to the given string and assigns it to the Status field. +func (o *CloudProviderAccessAzureServicePrincipal) SetStatus(v string) { + o.Status = &v +} diff --git a/admin/model_cloud_provider_access_gcp_service_account.go b/admin/model_cloud_provider_access_gcp_service_account.go new file mode 100644 index 00000000..67f10a1a --- /dev/null +++ b/admin/model_cloud_provider_access_gcp_service_account.go @@ -0,0 +1,554 @@ +// Code based on the AtlasAPI V2 OpenAPI file + +package admin + +import ( + "time" +) + +// CloudProviderAccessGCPServiceAccount Details that describe the features linked to the GCP Service Account. +type CloudProviderAccessGCPServiceAccount struct { + // Date and time when this Google Service Account was created. This parameter expresses its value in the ISO 8601 timestamp format in UTC. + // Read only field. + CreatedDate *time.Time `json:"createdDate,omitempty"` + // List that contains application features associated with this Google Service Account. + // Read only field. + FeatureUsages *[]CloudProviderAccessFeatureUsage `json:"featureUsages,omitempty"` + // Email address for the Google Service Account created by Atlas. + GcpServiceAccountForAtlas *string `json:"gcpServiceAccountForAtlas,omitempty"` + // Unique 24-hexadecimal digit string that identifies the role. + // Read only field. + RoleId *string `json:"roleId,omitempty"` + // Provision status of the service account. + // Read only field. + Status *string `json:"status,omitempty"` + // Human-readable label that identifies the cloud provider of the role. + ProviderName string `json:"providerName"` + // Amazon Resource Name that identifies the Amazon Web Services (AWS) user account that MongoDB Cloud uses when it assumes the Identity and Access Management (IAM) role. + // Read only field. + AtlasAWSAccountArn *string `json:"atlasAWSAccountArn,omitempty"` + // Unique external ID that MongoDB Cloud uses when it assumes the IAM role in your Amazon Web Services (AWS) account. + // Read only field. + AtlasAssumedRoleExternalId *string `json:"atlasAssumedRoleExternalId,omitempty"` + // Date and time when someone authorized this role for the specified cloud service provider. This parameter expresses its value in the ISO 8601 timestamp format in UTC. + // Read only field. + AuthorizedDate *time.Time `json:"authorizedDate,omitempty"` + // Amazon Resource Name (ARN) that identifies the Amazon Web Services (AWS) Identity and Access Management (IAM) role that MongoDB Cloud assumes when it accesses resources in your AWS account. + IamAssumedRoleArn *string `json:"iamAssumedRoleArn,omitempty"` + // Unique 24-hexadecimal digit string that identifies the role. + // Read only field. + Id *string `json:"_id,omitempty"` + // Azure Active Directory Application ID of Atlas. + AtlasAzureAppId *string `json:"atlasAzureAppId,omitempty"` + // Date and time when this Azure Service Principal was last updated. This parameter expresses its value in the ISO 8601 timestamp format in UTC. + // Read only field. + LastUpdatedDate *time.Time `json:"lastUpdatedDate,omitempty"` + // UUID string that identifies the Azure Service Principal. + ServicePrincipalId *string `json:"servicePrincipalId,omitempty"` + // UUID String that identifies the Azure Active Directory Tenant ID. + TenantId *string `json:"tenantId,omitempty"` +} + +// NewCloudProviderAccessGCPServiceAccount instantiates a new CloudProviderAccessGCPServiceAccount object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewCloudProviderAccessGCPServiceAccount(providerName string) *CloudProviderAccessGCPServiceAccount { + this := CloudProviderAccessGCPServiceAccount{} + this.ProviderName = providerName + return &this +} + +// NewCloudProviderAccessGCPServiceAccountWithDefaults instantiates a new CloudProviderAccessGCPServiceAccount object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewCloudProviderAccessGCPServiceAccountWithDefaults() *CloudProviderAccessGCPServiceAccount { + this := CloudProviderAccessGCPServiceAccount{} + return &this +} + +// GetCreatedDate returns the CreatedDate field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetCreatedDate() time.Time { + if o == nil || IsNil(o.CreatedDate) { + var ret time.Time + return ret + } + return *o.CreatedDate +} + +// GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetCreatedDateOk() (*time.Time, bool) { + if o == nil || IsNil(o.CreatedDate) { + return nil, false + } + + return o.CreatedDate, true +} + +// HasCreatedDate returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasCreatedDate() bool { + if o != nil && !IsNil(o.CreatedDate) { + return true + } + + return false +} + +// SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field. +func (o *CloudProviderAccessGCPServiceAccount) SetCreatedDate(v time.Time) { + o.CreatedDate = &v +} + +// GetFeatureUsages returns the FeatureUsages field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetFeatureUsages() []CloudProviderAccessFeatureUsage { + if o == nil || IsNil(o.FeatureUsages) { + var ret []CloudProviderAccessFeatureUsage + return ret + } + return *o.FeatureUsages +} + +// GetFeatureUsagesOk returns a tuple with the FeatureUsages field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetFeatureUsagesOk() (*[]CloudProviderAccessFeatureUsage, bool) { + if o == nil || IsNil(o.FeatureUsages) { + return nil, false + } + + return o.FeatureUsages, true +} + +// HasFeatureUsages returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasFeatureUsages() bool { + if o != nil && !IsNil(o.FeatureUsages) { + return true + } + + return false +} + +// SetFeatureUsages gets a reference to the given []CloudProviderAccessFeatureUsage and assigns it to the FeatureUsages field. +func (o *CloudProviderAccessGCPServiceAccount) SetFeatureUsages(v []CloudProviderAccessFeatureUsage) { + o.FeatureUsages = &v +} + +// GetGcpServiceAccountForAtlas returns the GcpServiceAccountForAtlas field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetGcpServiceAccountForAtlas() string { + if o == nil || IsNil(o.GcpServiceAccountForAtlas) { + var ret string + return ret + } + return *o.GcpServiceAccountForAtlas +} + +// GetGcpServiceAccountForAtlasOk returns a tuple with the GcpServiceAccountForAtlas field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetGcpServiceAccountForAtlasOk() (*string, bool) { + if o == nil || IsNil(o.GcpServiceAccountForAtlas) { + return nil, false + } + + return o.GcpServiceAccountForAtlas, true +} + +// HasGcpServiceAccountForAtlas returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasGcpServiceAccountForAtlas() bool { + if o != nil && !IsNil(o.GcpServiceAccountForAtlas) { + return true + } + + return false +} + +// SetGcpServiceAccountForAtlas gets a reference to the given string and assigns it to the GcpServiceAccountForAtlas field. +func (o *CloudProviderAccessGCPServiceAccount) SetGcpServiceAccountForAtlas(v string) { + o.GcpServiceAccountForAtlas = &v +} + +// GetRoleId returns the RoleId field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetRoleId() string { + if o == nil || IsNil(o.RoleId) { + var ret string + return ret + } + return *o.RoleId +} + +// GetRoleIdOk returns a tuple with the RoleId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetRoleIdOk() (*string, bool) { + if o == nil || IsNil(o.RoleId) { + return nil, false + } + + return o.RoleId, true +} + +// HasRoleId returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasRoleId() bool { + if o != nil && !IsNil(o.RoleId) { + return true + } + + return false +} + +// SetRoleId gets a reference to the given string and assigns it to the RoleId field. +func (o *CloudProviderAccessGCPServiceAccount) SetRoleId(v string) { + o.RoleId = &v +} + +// GetStatus returns the Status field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetStatus() string { + if o == nil || IsNil(o.Status) { + var ret string + return ret + } + return *o.Status +} + +// GetStatusOk returns a tuple with the Status field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetStatusOk() (*string, bool) { + if o == nil || IsNil(o.Status) { + return nil, false + } + + return o.Status, true +} + +// HasStatus returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasStatus() bool { + if o != nil && !IsNil(o.Status) { + return true + } + + return false +} + +// SetStatus gets a reference to the given string and assigns it to the Status field. +func (o *CloudProviderAccessGCPServiceAccount) SetStatus(v string) { + o.Status = &v +} + +// GetProviderName returns the ProviderName field value +func (o *CloudProviderAccessGCPServiceAccount) GetProviderName() string { + if o == nil { + var ret string + return ret + } + + return o.ProviderName +} + +// GetProviderNameOk returns a tuple with the ProviderName field value +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetProviderNameOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ProviderName, true +} + +// SetProviderName sets field value +func (o *CloudProviderAccessGCPServiceAccount) SetProviderName(v string) { + o.ProviderName = v +} + +// GetAtlasAWSAccountArn returns the AtlasAWSAccountArn field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAWSAccountArn() string { + if o == nil || IsNil(o.AtlasAWSAccountArn) { + var ret string + return ret + } + return *o.AtlasAWSAccountArn +} + +// GetAtlasAWSAccountArnOk returns a tuple with the AtlasAWSAccountArn field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAWSAccountArnOk() (*string, bool) { + if o == nil || IsNil(o.AtlasAWSAccountArn) { + return nil, false + } + + return o.AtlasAWSAccountArn, true +} + +// HasAtlasAWSAccountArn returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasAtlasAWSAccountArn() bool { + if o != nil && !IsNil(o.AtlasAWSAccountArn) { + return true + } + + return false +} + +// SetAtlasAWSAccountArn gets a reference to the given string and assigns it to the AtlasAWSAccountArn field. +func (o *CloudProviderAccessGCPServiceAccount) SetAtlasAWSAccountArn(v string) { + o.AtlasAWSAccountArn = &v +} + +// GetAtlasAssumedRoleExternalId returns the AtlasAssumedRoleExternalId field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAssumedRoleExternalId() string { + if o == nil || IsNil(o.AtlasAssumedRoleExternalId) { + var ret string + return ret + } + return *o.AtlasAssumedRoleExternalId +} + +// GetAtlasAssumedRoleExternalIdOk returns a tuple with the AtlasAssumedRoleExternalId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAssumedRoleExternalIdOk() (*string, bool) { + if o == nil || IsNil(o.AtlasAssumedRoleExternalId) { + return nil, false + } + + return o.AtlasAssumedRoleExternalId, true +} + +// HasAtlasAssumedRoleExternalId returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasAtlasAssumedRoleExternalId() bool { + if o != nil && !IsNil(o.AtlasAssumedRoleExternalId) { + return true + } + + return false +} + +// SetAtlasAssumedRoleExternalId gets a reference to the given string and assigns it to the AtlasAssumedRoleExternalId field. +func (o *CloudProviderAccessGCPServiceAccount) SetAtlasAssumedRoleExternalId(v string) { + o.AtlasAssumedRoleExternalId = &v +} + +// GetAuthorizedDate returns the AuthorizedDate field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetAuthorizedDate() time.Time { + if o == nil || IsNil(o.AuthorizedDate) { + var ret time.Time + return ret + } + return *o.AuthorizedDate +} + +// GetAuthorizedDateOk returns a tuple with the AuthorizedDate field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetAuthorizedDateOk() (*time.Time, bool) { + if o == nil || IsNil(o.AuthorizedDate) { + return nil, false + } + + return o.AuthorizedDate, true +} + +// HasAuthorizedDate returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasAuthorizedDate() bool { + if o != nil && !IsNil(o.AuthorizedDate) { + return true + } + + return false +} + +// SetAuthorizedDate gets a reference to the given time.Time and assigns it to the AuthorizedDate field. +func (o *CloudProviderAccessGCPServiceAccount) SetAuthorizedDate(v time.Time) { + o.AuthorizedDate = &v +} + +// GetIamAssumedRoleArn returns the IamAssumedRoleArn field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetIamAssumedRoleArn() string { + if o == nil || IsNil(o.IamAssumedRoleArn) { + var ret string + return ret + } + return *o.IamAssumedRoleArn +} + +// GetIamAssumedRoleArnOk returns a tuple with the IamAssumedRoleArn field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetIamAssumedRoleArnOk() (*string, bool) { + if o == nil || IsNil(o.IamAssumedRoleArn) { + return nil, false + } + + return o.IamAssumedRoleArn, true +} + +// HasIamAssumedRoleArn returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasIamAssumedRoleArn() bool { + if o != nil && !IsNil(o.IamAssumedRoleArn) { + return true + } + + return false +} + +// SetIamAssumedRoleArn gets a reference to the given string and assigns it to the IamAssumedRoleArn field. +func (o *CloudProviderAccessGCPServiceAccount) SetIamAssumedRoleArn(v string) { + o.IamAssumedRoleArn = &v +} + +// GetId returns the Id field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetId() string { + if o == nil || IsNil(o.Id) { + var ret string + return ret + } + return *o.Id +} + +// GetIdOk returns a tuple with the Id field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetIdOk() (*string, bool) { + if o == nil || IsNil(o.Id) { + return nil, false + } + + return o.Id, true +} + +// HasId returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasId() bool { + if o != nil && !IsNil(o.Id) { + return true + } + + return false +} + +// SetId gets a reference to the given string and assigns it to the Id field. +func (o *CloudProviderAccessGCPServiceAccount) SetId(v string) { + o.Id = &v +} + +// GetAtlasAzureAppId returns the AtlasAzureAppId field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAzureAppId() string { + if o == nil || IsNil(o.AtlasAzureAppId) { + var ret string + return ret + } + return *o.AtlasAzureAppId +} + +// GetAtlasAzureAppIdOk returns a tuple with the AtlasAzureAppId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAzureAppIdOk() (*string, bool) { + if o == nil || IsNil(o.AtlasAzureAppId) { + return nil, false + } + + return o.AtlasAzureAppId, true +} + +// HasAtlasAzureAppId returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasAtlasAzureAppId() bool { + if o != nil && !IsNil(o.AtlasAzureAppId) { + return true + } + + return false +} + +// SetAtlasAzureAppId gets a reference to the given string and assigns it to the AtlasAzureAppId field. +func (o *CloudProviderAccessGCPServiceAccount) SetAtlasAzureAppId(v string) { + o.AtlasAzureAppId = &v +} + +// GetLastUpdatedDate returns the LastUpdatedDate field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetLastUpdatedDate() time.Time { + if o == nil || IsNil(o.LastUpdatedDate) { + var ret time.Time + return ret + } + return *o.LastUpdatedDate +} + +// GetLastUpdatedDateOk returns a tuple with the LastUpdatedDate field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetLastUpdatedDateOk() (*time.Time, bool) { + if o == nil || IsNil(o.LastUpdatedDate) { + return nil, false + } + + return o.LastUpdatedDate, true +} + +// HasLastUpdatedDate returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasLastUpdatedDate() bool { + if o != nil && !IsNil(o.LastUpdatedDate) { + return true + } + + return false +} + +// SetLastUpdatedDate gets a reference to the given time.Time and assigns it to the LastUpdatedDate field. +func (o *CloudProviderAccessGCPServiceAccount) SetLastUpdatedDate(v time.Time) { + o.LastUpdatedDate = &v +} + +// GetServicePrincipalId returns the ServicePrincipalId field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetServicePrincipalId() string { + if o == nil || IsNil(o.ServicePrincipalId) { + var ret string + return ret + } + return *o.ServicePrincipalId +} + +// GetServicePrincipalIdOk returns a tuple with the ServicePrincipalId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetServicePrincipalIdOk() (*string, bool) { + if o == nil || IsNil(o.ServicePrincipalId) { + return nil, false + } + + return o.ServicePrincipalId, true +} + +// HasServicePrincipalId returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasServicePrincipalId() bool { + if o != nil && !IsNil(o.ServicePrincipalId) { + return true + } + + return false +} + +// SetServicePrincipalId gets a reference to the given string and assigns it to the ServicePrincipalId field. +func (o *CloudProviderAccessGCPServiceAccount) SetServicePrincipalId(v string) { + o.ServicePrincipalId = &v +} + +// GetTenantId returns the TenantId field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccount) GetTenantId() string { + if o == nil || IsNil(o.TenantId) { + var ret string + return ret + } + return *o.TenantId +} + +// GetTenantIdOk returns a tuple with the TenantId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccount) GetTenantIdOk() (*string, bool) { + if o == nil || IsNil(o.TenantId) { + return nil, false + } + + return o.TenantId, true +} + +// HasTenantId returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccount) HasTenantId() bool { + if o != nil && !IsNil(o.TenantId) { + return true + } + + return false +} + +// SetTenantId gets a reference to the given string and assigns it to the TenantId field. +func (o *CloudProviderAccessGCPServiceAccount) SetTenantId(v string) { + o.TenantId = &v +} diff --git a/admin/model_cloud_provider_access_gcp_service_account_all_of.go b/admin/model_cloud_provider_access_gcp_service_account_all_of.go new file mode 100644 index 00000000..e191e286 --- /dev/null +++ b/admin/model_cloud_provider_access_gcp_service_account_all_of.go @@ -0,0 +1,207 @@ +// Code based on the AtlasAPI V2 OpenAPI file + +package admin + +import ( + "time" +) + +// CloudProviderAccessGCPServiceAccountAllOf struct for CloudProviderAccessGCPServiceAccountAllOf +type CloudProviderAccessGCPServiceAccountAllOf struct { + // Date and time when this Google Service Account was created. This parameter expresses its value in the ISO 8601 timestamp format in UTC. + // Read only field. + CreatedDate *time.Time `json:"createdDate,omitempty"` + // List that contains application features associated with this Google Service Account. + // Read only field. + FeatureUsages *[]CloudProviderAccessFeatureUsage `json:"featureUsages,omitempty"` + // Email address for the Google Service Account created by Atlas. + GcpServiceAccountForAtlas *string `json:"gcpServiceAccountForAtlas,omitempty"` + // Unique 24-hexadecimal digit string that identifies the role. + // Read only field. + RoleId *string `json:"roleId,omitempty"` + // Provision status of the service account. + // Read only field. + Status *string `json:"status,omitempty"` +} + +// NewCloudProviderAccessGCPServiceAccountAllOf instantiates a new CloudProviderAccessGCPServiceAccountAllOf object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewCloudProviderAccessGCPServiceAccountAllOf() *CloudProviderAccessGCPServiceAccountAllOf { + this := CloudProviderAccessGCPServiceAccountAllOf{} + return &this +} + +// NewCloudProviderAccessGCPServiceAccountAllOfWithDefaults instantiates a new CloudProviderAccessGCPServiceAccountAllOf object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewCloudProviderAccessGCPServiceAccountAllOfWithDefaults() *CloudProviderAccessGCPServiceAccountAllOf { + this := CloudProviderAccessGCPServiceAccountAllOf{} + return &this +} + +// GetCreatedDate returns the CreatedDate field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetCreatedDate() time.Time { + if o == nil || IsNil(o.CreatedDate) { + var ret time.Time + return ret + } + return *o.CreatedDate +} + +// GetCreatedDateOk returns a tuple with the CreatedDate field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetCreatedDateOk() (*time.Time, bool) { + if o == nil || IsNil(o.CreatedDate) { + return nil, false + } + + return o.CreatedDate, true +} + +// HasCreatedDate returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) HasCreatedDate() bool { + if o != nil && !IsNil(o.CreatedDate) { + return true + } + + return false +} + +// SetCreatedDate gets a reference to the given time.Time and assigns it to the CreatedDate field. +func (o *CloudProviderAccessGCPServiceAccountAllOf) SetCreatedDate(v time.Time) { + o.CreatedDate = &v +} + +// GetFeatureUsages returns the FeatureUsages field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetFeatureUsages() []CloudProviderAccessFeatureUsage { + if o == nil || IsNil(o.FeatureUsages) { + var ret []CloudProviderAccessFeatureUsage + return ret + } + return *o.FeatureUsages +} + +// GetFeatureUsagesOk returns a tuple with the FeatureUsages field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetFeatureUsagesOk() (*[]CloudProviderAccessFeatureUsage, bool) { + if o == nil || IsNil(o.FeatureUsages) { + return nil, false + } + + return o.FeatureUsages, true +} + +// HasFeatureUsages returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) HasFeatureUsages() bool { + if o != nil && !IsNil(o.FeatureUsages) { + return true + } + + return false +} + +// SetFeatureUsages gets a reference to the given []CloudProviderAccessFeatureUsage and assigns it to the FeatureUsages field. +func (o *CloudProviderAccessGCPServiceAccountAllOf) SetFeatureUsages(v []CloudProviderAccessFeatureUsage) { + o.FeatureUsages = &v +} + +// GetGcpServiceAccountForAtlas returns the GcpServiceAccountForAtlas field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetGcpServiceAccountForAtlas() string { + if o == nil || IsNil(o.GcpServiceAccountForAtlas) { + var ret string + return ret + } + return *o.GcpServiceAccountForAtlas +} + +// GetGcpServiceAccountForAtlasOk returns a tuple with the GcpServiceAccountForAtlas field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetGcpServiceAccountForAtlasOk() (*string, bool) { + if o == nil || IsNil(o.GcpServiceAccountForAtlas) { + return nil, false + } + + return o.GcpServiceAccountForAtlas, true +} + +// HasGcpServiceAccountForAtlas returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) HasGcpServiceAccountForAtlas() bool { + if o != nil && !IsNil(o.GcpServiceAccountForAtlas) { + return true + } + + return false +} + +// SetGcpServiceAccountForAtlas gets a reference to the given string and assigns it to the GcpServiceAccountForAtlas field. +func (o *CloudProviderAccessGCPServiceAccountAllOf) SetGcpServiceAccountForAtlas(v string) { + o.GcpServiceAccountForAtlas = &v +} + +// GetRoleId returns the RoleId field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetRoleId() string { + if o == nil || IsNil(o.RoleId) { + var ret string + return ret + } + return *o.RoleId +} + +// GetRoleIdOk returns a tuple with the RoleId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetRoleIdOk() (*string, bool) { + if o == nil || IsNil(o.RoleId) { + return nil, false + } + + return o.RoleId, true +} + +// HasRoleId returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) HasRoleId() bool { + if o != nil && !IsNil(o.RoleId) { + return true + } + + return false +} + +// SetRoleId gets a reference to the given string and assigns it to the RoleId field. +func (o *CloudProviderAccessGCPServiceAccountAllOf) SetRoleId(v string) { + o.RoleId = &v +} + +// GetStatus returns the Status field value if set, zero value otherwise +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetStatus() string { + if o == nil || IsNil(o.Status) { + var ret string + return ret + } + return *o.Status +} + +// GetStatusOk returns a tuple with the Status field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) GetStatusOk() (*string, bool) { + if o == nil || IsNil(o.Status) { + return nil, false + } + + return o.Status, true +} + +// HasStatus returns a boolean if a field has been set. +func (o *CloudProviderAccessGCPServiceAccountAllOf) HasStatus() bool { + if o != nil && !IsNil(o.Status) { + return true + } + + return false +} + +// SetStatus gets a reference to the given string and assigns it to the Status field. +func (o *CloudProviderAccessGCPServiceAccountAllOf) SetStatus(v string) { + o.Status = &v +} diff --git a/admin/model_cloud_provider_access_role.go b/admin/model_cloud_provider_access_role.go index 440a9846..e578a028 100644 --- a/admin/model_cloud_provider_access_role.go +++ b/admin/model_cloud_provider_access_role.go @@ -44,6 +44,9 @@ type CloudProviderAccessRole struct { TenantId *string `json:"tenantId,omitempty"` // Email address for the Google Service Account created by Atlas. GcpServiceAccountForAtlas *string `json:"gcpServiceAccountForAtlas,omitempty"` + // Provision status of the service account. + // Read only field. + Status *string `json:"status,omitempty"` } // NewCloudProviderAccessRole instantiates a new CloudProviderAccessRole object @@ -516,3 +519,36 @@ func (o *CloudProviderAccessRole) HasGcpServiceAccountForAtlas() bool { func (o *CloudProviderAccessRole) SetGcpServiceAccountForAtlas(v string) { o.GcpServiceAccountForAtlas = &v } + +// GetStatus returns the Status field value if set, zero value otherwise +func (o *CloudProviderAccessRole) GetStatus() string { + if o == nil || IsNil(o.Status) { + var ret string + return ret + } + return *o.Status +} + +// GetStatusOk returns a tuple with the Status field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessRole) GetStatusOk() (*string, bool) { + if o == nil || IsNil(o.Status) { + return nil, false + } + + return o.Status, true +} + +// HasStatus returns a boolean if a field has been set. +func (o *CloudProviderAccessRole) HasStatus() bool { + if o != nil && !IsNil(o.Status) { + return true + } + + return false +} + +// SetStatus gets a reference to the given string and assigns it to the Status field. +func (o *CloudProviderAccessRole) SetStatus(v string) { + o.Status = &v +} diff --git a/admin/model_cloud_provider_access_roles.go b/admin/model_cloud_provider_access_roles.go index 61358170..3a897235 100644 --- a/admin/model_cloud_provider_access_roles.go +++ b/admin/model_cloud_provider_access_roles.go @@ -8,6 +8,8 @@ type CloudProviderAccessRoles struct { AwsIamRoles *[]CloudProviderAccessAWSIAMRole `json:"awsIamRoles,omitempty"` // List that contains the Azure Service Principals registered with MongoDB Cloud. AzureServicePrincipals *[]CloudProviderAccessAzureServicePrincipal `json:"azureServicePrincipals,omitempty"` + // List that contains the Google Service Accounts registered and authorized with MongoDB Cloud. + GcpServiceAccounts *[]CloudProviderAccessGCPServiceAccount `json:"gcpServiceAccounts,omitempty"` } // NewCloudProviderAccessRoles instantiates a new CloudProviderAccessRoles object @@ -92,3 +94,36 @@ func (o *CloudProviderAccessRoles) HasAzureServicePrincipals() bool { func (o *CloudProviderAccessRoles) SetAzureServicePrincipals(v []CloudProviderAccessAzureServicePrincipal) { o.AzureServicePrincipals = &v } + +// GetGcpServiceAccounts returns the GcpServiceAccounts field value if set, zero value otherwise +func (o *CloudProviderAccessRoles) GetGcpServiceAccounts() []CloudProviderAccessGCPServiceAccount { + if o == nil || IsNil(o.GcpServiceAccounts) { + var ret []CloudProviderAccessGCPServiceAccount + return ret + } + return *o.GcpServiceAccounts +} + +// GetGcpServiceAccountsOk returns a tuple with the GcpServiceAccounts field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CloudProviderAccessRoles) GetGcpServiceAccountsOk() (*[]CloudProviderAccessGCPServiceAccount, bool) { + if o == nil || IsNil(o.GcpServiceAccounts) { + return nil, false + } + + return o.GcpServiceAccounts, true +} + +// HasGcpServiceAccounts returns a boolean if a field has been set. +func (o *CloudProviderAccessRoles) HasGcpServiceAccounts() bool { + if o != nil && !IsNil(o.GcpServiceAccounts) { + return true + } + + return false +} + +// SetGcpServiceAccounts gets a reference to the given []CloudProviderAccessGCPServiceAccount and assigns it to the GcpServiceAccounts field. +func (o *CloudProviderAccessRoles) SetGcpServiceAccounts(v []CloudProviderAccessGCPServiceAccount) { + o.GcpServiceAccounts = &v +} diff --git a/docs/doc_last_reference.md b/docs/doc_last_reference.md index 5a5184be..aa8d3a89 100644 --- a/docs/doc_last_reference.md +++ b/docs/doc_last_reference.md @@ -551,6 +551,8 @@ Class | Method | HTTP request | Description | - [CloudProviderAccessAzureServicePrincipalAllOf](./docs/CloudProviderAccessAzureServicePrincipalAllOf.md) - [CloudProviderAccessFeatureUsage](./docs/CloudProviderAccessFeatureUsage.md) - [CloudProviderAccessFeatureUsagePushBasedLogExportFeatureId](./docs/CloudProviderAccessFeatureUsagePushBasedLogExportFeatureId.md) + - [CloudProviderAccessGCPServiceAccount](./docs/CloudProviderAccessGCPServiceAccount.md) + - [CloudProviderAccessGCPServiceAccountAllOf](./docs/CloudProviderAccessGCPServiceAccountAllOf.md) - [CloudProviderAccessRole](./docs/CloudProviderAccessRole.md) - [CloudProviderAccessRoleRequest](./docs/CloudProviderAccessRoleRequest.md) - [CloudProviderAccessRoleRequestUpdate](./docs/CloudProviderAccessRoleRequestUpdate.md) diff --git a/docs/docs/CloudProviderAccessAWSIAMRole.md b/docs/docs/CloudProviderAccessAWSIAMRole.md index aae9ee61..e002f46a 100644 --- a/docs/docs/CloudProviderAccessAWSIAMRole.md +++ b/docs/docs/CloudProviderAccessAWSIAMRole.md @@ -18,6 +18,7 @@ Name | Type | Description | Notes **ServicePrincipalId** | Pointer to **string** | UUID string that identifies the Azure Service Principal. | [optional] **TenantId** | Pointer to **string** | UUID String that identifies the Azure Active Directory Tenant ID. | [optional] **GcpServiceAccountForAtlas** | Pointer to **string** | Email address for the Google Service Account created by Atlas. | [optional] +**Status** | Pointer to **string** | Provision status of the service account. | [optional] [readonly] ## Methods @@ -369,6 +370,30 @@ SetGcpServiceAccountForAtlas sets GcpServiceAccountForAtlas field to given value `func (o *CloudProviderAccessAWSIAMRole) HasGcpServiceAccountForAtlas() bool` HasGcpServiceAccountForAtlas returns a boolean if a field has been set. +### GetStatus + +`func (o *CloudProviderAccessAWSIAMRole) GetStatus() string` + +GetStatus returns the Status field if non-nil, zero value otherwise. + +### GetStatusOk + +`func (o *CloudProviderAccessAWSIAMRole) GetStatusOk() (*string, bool)` + +GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetStatus + +`func (o *CloudProviderAccessAWSIAMRole) SetStatus(v string)` + +SetStatus sets Status field to given value. + +### HasStatus + +`func (o *CloudProviderAccessAWSIAMRole) HasStatus() bool` + +HasStatus returns a boolean if a field has been set. [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/docs/CloudProviderAccessAzureServicePrincipal.md b/docs/docs/CloudProviderAccessAzureServicePrincipal.md index 20132704..a484e0d7 100644 --- a/docs/docs/CloudProviderAccessAzureServicePrincipal.md +++ b/docs/docs/CloudProviderAccessAzureServicePrincipal.md @@ -18,6 +18,7 @@ Name | Type | Description | Notes **IamAssumedRoleArn** | Pointer to **string** | Amazon Resource Name (ARN) that identifies the Amazon Web Services (AWS) Identity and Access Management (IAM) role that MongoDB Cloud assumes when it accesses resources in your AWS account. | [optional] **RoleId** | Pointer to **string** | Unique 24-hexadecimal digit string that identifies the role. | [optional] [readonly] **GcpServiceAccountForAtlas** | Pointer to **string** | Email address for the Google Service Account created by Atlas. | [optional] +**Status** | Pointer to **string** | Provision status of the service account. | [optional] [readonly] ## Methods @@ -369,6 +370,30 @@ SetGcpServiceAccountForAtlas sets GcpServiceAccountForAtlas field to given value `func (o *CloudProviderAccessAzureServicePrincipal) HasGcpServiceAccountForAtlas() bool` HasGcpServiceAccountForAtlas returns a boolean if a field has been set. +### GetStatus + +`func (o *CloudProviderAccessAzureServicePrincipal) GetStatus() string` + +GetStatus returns the Status field if non-nil, zero value otherwise. + +### GetStatusOk + +`func (o *CloudProviderAccessAzureServicePrincipal) GetStatusOk() (*string, bool)` + +GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetStatus + +`func (o *CloudProviderAccessAzureServicePrincipal) SetStatus(v string)` + +SetStatus sets Status field to given value. + +### HasStatus + +`func (o *CloudProviderAccessAzureServicePrincipal) HasStatus() bool` + +HasStatus returns a boolean if a field has been set. [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/docs/CloudProviderAccessGCPServiceAccount.md b/docs/docs/CloudProviderAccessGCPServiceAccount.md new file mode 100644 index 00000000..26b42156 --- /dev/null +++ b/docs/docs/CloudProviderAccessGCPServiceAccount.md @@ -0,0 +1,400 @@ +# CloudProviderAccessGCPServiceAccount + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**CreatedDate** | Pointer to **time.Time** | Date and time when this Google Service Account was created. This parameter expresses its value in the ISO 8601 timestamp format in UTC. | [optional] [readonly] +**FeatureUsages** | Pointer to [**[]CloudProviderAccessFeatureUsage**](CloudProviderAccessFeatureUsage.md) | List that contains application features associated with this Google Service Account. | [optional] [readonly] +**GcpServiceAccountForAtlas** | Pointer to **string** | Email address for the Google Service Account created by Atlas. | [optional] +**RoleId** | Pointer to **string** | Unique 24-hexadecimal digit string that identifies the role. | [optional] [readonly] +**Status** | Pointer to **string** | Provision status of the service account. | [optional] [readonly] +**ProviderName** | **string** | Human-readable label that identifies the cloud provider of the role. | +**AtlasAWSAccountArn** | Pointer to **string** | Amazon Resource Name that identifies the Amazon Web Services (AWS) user account that MongoDB Cloud uses when it assumes the Identity and Access Management (IAM) role. | [optional] [readonly] +**AtlasAssumedRoleExternalId** | Pointer to **string** | Unique external ID that MongoDB Cloud uses when it assumes the IAM role in your Amazon Web Services (AWS) account. | [optional] [readonly] +**AuthorizedDate** | Pointer to **time.Time** | Date and time when someone authorized this role for the specified cloud service provider. This parameter expresses its value in the ISO 8601 timestamp format in UTC. | [optional] [readonly] +**IamAssumedRoleArn** | Pointer to **string** | Amazon Resource Name (ARN) that identifies the Amazon Web Services (AWS) Identity and Access Management (IAM) role that MongoDB Cloud assumes when it accesses resources in your AWS account. | [optional] +**Id** | Pointer to **string** | Unique 24-hexadecimal digit string that identifies the role. | [optional] [readonly] +**AtlasAzureAppId** | Pointer to **string** | Azure Active Directory Application ID of Atlas. | [optional] +**LastUpdatedDate** | Pointer to **time.Time** | Date and time when this Azure Service Principal was last updated. This parameter expresses its value in the ISO 8601 timestamp format in UTC. | [optional] [readonly] +**ServicePrincipalId** | Pointer to **string** | UUID string that identifies the Azure Service Principal. | [optional] +**TenantId** | Pointer to **string** | UUID String that identifies the Azure Active Directory Tenant ID. | [optional] + +## Methods + +### NewCloudProviderAccessGCPServiceAccount + +`func NewCloudProviderAccessGCPServiceAccount(providerName string, ) *CloudProviderAccessGCPServiceAccount` + +NewCloudProviderAccessGCPServiceAccount instantiates a new CloudProviderAccessGCPServiceAccount object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewCloudProviderAccessGCPServiceAccountWithDefaults + +`func NewCloudProviderAccessGCPServiceAccountWithDefaults() *CloudProviderAccessGCPServiceAccount` + +NewCloudProviderAccessGCPServiceAccountWithDefaults instantiates a new CloudProviderAccessGCPServiceAccount object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetCreatedDate + +`func (o *CloudProviderAccessGCPServiceAccount) GetCreatedDate() time.Time` + +GetCreatedDate returns the CreatedDate field if non-nil, zero value otherwise. + +### GetCreatedDateOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetCreatedDateOk() (*time.Time, bool)` + +GetCreatedDateOk returns a tuple with the CreatedDate field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCreatedDate + +`func (o *CloudProviderAccessGCPServiceAccount) SetCreatedDate(v time.Time)` + +SetCreatedDate sets CreatedDate field to given value. + +### HasCreatedDate + +`func (o *CloudProviderAccessGCPServiceAccount) HasCreatedDate() bool` + +HasCreatedDate returns a boolean if a field has been set. +### GetFeatureUsages + +`func (o *CloudProviderAccessGCPServiceAccount) GetFeatureUsages() []CloudProviderAccessFeatureUsage` + +GetFeatureUsages returns the FeatureUsages field if non-nil, zero value otherwise. + +### GetFeatureUsagesOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetFeatureUsagesOk() (*[]CloudProviderAccessFeatureUsage, bool)` + +GetFeatureUsagesOk returns a tuple with the FeatureUsages field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetFeatureUsages + +`func (o *CloudProviderAccessGCPServiceAccount) SetFeatureUsages(v []CloudProviderAccessFeatureUsage)` + +SetFeatureUsages sets FeatureUsages field to given value. + +### HasFeatureUsages + +`func (o *CloudProviderAccessGCPServiceAccount) HasFeatureUsages() bool` + +HasFeatureUsages returns a boolean if a field has been set. +### GetGcpServiceAccountForAtlas + +`func (o *CloudProviderAccessGCPServiceAccount) GetGcpServiceAccountForAtlas() string` + +GetGcpServiceAccountForAtlas returns the GcpServiceAccountForAtlas field if non-nil, zero value otherwise. + +### GetGcpServiceAccountForAtlasOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetGcpServiceAccountForAtlasOk() (*string, bool)` + +GetGcpServiceAccountForAtlasOk returns a tuple with the GcpServiceAccountForAtlas field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetGcpServiceAccountForAtlas + +`func (o *CloudProviderAccessGCPServiceAccount) SetGcpServiceAccountForAtlas(v string)` + +SetGcpServiceAccountForAtlas sets GcpServiceAccountForAtlas field to given value. + +### HasGcpServiceAccountForAtlas + +`func (o *CloudProviderAccessGCPServiceAccount) HasGcpServiceAccountForAtlas() bool` + +HasGcpServiceAccountForAtlas returns a boolean if a field has been set. +### GetRoleId + +`func (o *CloudProviderAccessGCPServiceAccount) GetRoleId() string` + +GetRoleId returns the RoleId field if non-nil, zero value otherwise. + +### GetRoleIdOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetRoleIdOk() (*string, bool)` + +GetRoleIdOk returns a tuple with the RoleId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetRoleId + +`func (o *CloudProviderAccessGCPServiceAccount) SetRoleId(v string)` + +SetRoleId sets RoleId field to given value. + +### HasRoleId + +`func (o *CloudProviderAccessGCPServiceAccount) HasRoleId() bool` + +HasRoleId returns a boolean if a field has been set. +### GetStatus + +`func (o *CloudProviderAccessGCPServiceAccount) GetStatus() string` + +GetStatus returns the Status field if non-nil, zero value otherwise. + +### GetStatusOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetStatusOk() (*string, bool)` + +GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetStatus + +`func (o *CloudProviderAccessGCPServiceAccount) SetStatus(v string)` + +SetStatus sets Status field to given value. + +### HasStatus + +`func (o *CloudProviderAccessGCPServiceAccount) HasStatus() bool` + +HasStatus returns a boolean if a field has been set. +### GetProviderName + +`func (o *CloudProviderAccessGCPServiceAccount) GetProviderName() string` + +GetProviderName returns the ProviderName field if non-nil, zero value otherwise. + +### GetProviderNameOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetProviderNameOk() (*string, bool)` + +GetProviderNameOk returns a tuple with the ProviderName field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProviderName + +`func (o *CloudProviderAccessGCPServiceAccount) SetProviderName(v string)` + +SetProviderName sets ProviderName field to given value. + +### GetAtlasAWSAccountArn + +`func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAWSAccountArn() string` + +GetAtlasAWSAccountArn returns the AtlasAWSAccountArn field if non-nil, zero value otherwise. + +### GetAtlasAWSAccountArnOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAWSAccountArnOk() (*string, bool)` + +GetAtlasAWSAccountArnOk returns a tuple with the AtlasAWSAccountArn field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAtlasAWSAccountArn + +`func (o *CloudProviderAccessGCPServiceAccount) SetAtlasAWSAccountArn(v string)` + +SetAtlasAWSAccountArn sets AtlasAWSAccountArn field to given value. + +### HasAtlasAWSAccountArn + +`func (o *CloudProviderAccessGCPServiceAccount) HasAtlasAWSAccountArn() bool` + +HasAtlasAWSAccountArn returns a boolean if a field has been set. +### GetAtlasAssumedRoleExternalId + +`func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAssumedRoleExternalId() string` + +GetAtlasAssumedRoleExternalId returns the AtlasAssumedRoleExternalId field if non-nil, zero value otherwise. + +### GetAtlasAssumedRoleExternalIdOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAssumedRoleExternalIdOk() (*string, bool)` + +GetAtlasAssumedRoleExternalIdOk returns a tuple with the AtlasAssumedRoleExternalId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAtlasAssumedRoleExternalId + +`func (o *CloudProviderAccessGCPServiceAccount) SetAtlasAssumedRoleExternalId(v string)` + +SetAtlasAssumedRoleExternalId sets AtlasAssumedRoleExternalId field to given value. + +### HasAtlasAssumedRoleExternalId + +`func (o *CloudProviderAccessGCPServiceAccount) HasAtlasAssumedRoleExternalId() bool` + +HasAtlasAssumedRoleExternalId returns a boolean if a field has been set. +### GetAuthorizedDate + +`func (o *CloudProviderAccessGCPServiceAccount) GetAuthorizedDate() time.Time` + +GetAuthorizedDate returns the AuthorizedDate field if non-nil, zero value otherwise. + +### GetAuthorizedDateOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetAuthorizedDateOk() (*time.Time, bool)` + +GetAuthorizedDateOk returns a tuple with the AuthorizedDate field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAuthorizedDate + +`func (o *CloudProviderAccessGCPServiceAccount) SetAuthorizedDate(v time.Time)` + +SetAuthorizedDate sets AuthorizedDate field to given value. + +### HasAuthorizedDate + +`func (o *CloudProviderAccessGCPServiceAccount) HasAuthorizedDate() bool` + +HasAuthorizedDate returns a boolean if a field has been set. +### GetIamAssumedRoleArn + +`func (o *CloudProviderAccessGCPServiceAccount) GetIamAssumedRoleArn() string` + +GetIamAssumedRoleArn returns the IamAssumedRoleArn field if non-nil, zero value otherwise. + +### GetIamAssumedRoleArnOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetIamAssumedRoleArnOk() (*string, bool)` + +GetIamAssumedRoleArnOk returns a tuple with the IamAssumedRoleArn field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetIamAssumedRoleArn + +`func (o *CloudProviderAccessGCPServiceAccount) SetIamAssumedRoleArn(v string)` + +SetIamAssumedRoleArn sets IamAssumedRoleArn field to given value. + +### HasIamAssumedRoleArn + +`func (o *CloudProviderAccessGCPServiceAccount) HasIamAssumedRoleArn() bool` + +HasIamAssumedRoleArn returns a boolean if a field has been set. +### GetId + +`func (o *CloudProviderAccessGCPServiceAccount) GetId() string` + +GetId returns the Id field if non-nil, zero value otherwise. + +### GetIdOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetIdOk() (*string, bool)` + +GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetId + +`func (o *CloudProviderAccessGCPServiceAccount) SetId(v string)` + +SetId sets Id field to given value. + +### HasId + +`func (o *CloudProviderAccessGCPServiceAccount) HasId() bool` + +HasId returns a boolean if a field has been set. +### GetAtlasAzureAppId + +`func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAzureAppId() string` + +GetAtlasAzureAppId returns the AtlasAzureAppId field if non-nil, zero value otherwise. + +### GetAtlasAzureAppIdOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetAtlasAzureAppIdOk() (*string, bool)` + +GetAtlasAzureAppIdOk returns a tuple with the AtlasAzureAppId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAtlasAzureAppId + +`func (o *CloudProviderAccessGCPServiceAccount) SetAtlasAzureAppId(v string)` + +SetAtlasAzureAppId sets AtlasAzureAppId field to given value. + +### HasAtlasAzureAppId + +`func (o *CloudProviderAccessGCPServiceAccount) HasAtlasAzureAppId() bool` + +HasAtlasAzureAppId returns a boolean if a field has been set. +### GetLastUpdatedDate + +`func (o *CloudProviderAccessGCPServiceAccount) GetLastUpdatedDate() time.Time` + +GetLastUpdatedDate returns the LastUpdatedDate field if non-nil, zero value otherwise. + +### GetLastUpdatedDateOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetLastUpdatedDateOk() (*time.Time, bool)` + +GetLastUpdatedDateOk returns a tuple with the LastUpdatedDate field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLastUpdatedDate + +`func (o *CloudProviderAccessGCPServiceAccount) SetLastUpdatedDate(v time.Time)` + +SetLastUpdatedDate sets LastUpdatedDate field to given value. + +### HasLastUpdatedDate + +`func (o *CloudProviderAccessGCPServiceAccount) HasLastUpdatedDate() bool` + +HasLastUpdatedDate returns a boolean if a field has been set. +### GetServicePrincipalId + +`func (o *CloudProviderAccessGCPServiceAccount) GetServicePrincipalId() string` + +GetServicePrincipalId returns the ServicePrincipalId field if non-nil, zero value otherwise. + +### GetServicePrincipalIdOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetServicePrincipalIdOk() (*string, bool)` + +GetServicePrincipalIdOk returns a tuple with the ServicePrincipalId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetServicePrincipalId + +`func (o *CloudProviderAccessGCPServiceAccount) SetServicePrincipalId(v string)` + +SetServicePrincipalId sets ServicePrincipalId field to given value. + +### HasServicePrincipalId + +`func (o *CloudProviderAccessGCPServiceAccount) HasServicePrincipalId() bool` + +HasServicePrincipalId returns a boolean if a field has been set. +### GetTenantId + +`func (o *CloudProviderAccessGCPServiceAccount) GetTenantId() string` + +GetTenantId returns the TenantId field if non-nil, zero value otherwise. + +### GetTenantIdOk + +`func (o *CloudProviderAccessGCPServiceAccount) GetTenantIdOk() (*string, bool)` + +GetTenantIdOk returns a tuple with the TenantId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetTenantId + +`func (o *CloudProviderAccessGCPServiceAccount) SetTenantId(v string)` + +SetTenantId sets TenantId field to given value. + +### HasTenantId + +`func (o *CloudProviderAccessGCPServiceAccount) HasTenantId() bool` + +HasTenantId returns a boolean if a field has been set. + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/docs/CloudProviderAccessGCPServiceAccountAllOf.md b/docs/docs/CloudProviderAccessGCPServiceAccountAllOf.md new file mode 100644 index 00000000..fbcaa802 --- /dev/null +++ b/docs/docs/CloudProviderAccessGCPServiceAccountAllOf.md @@ -0,0 +1,155 @@ +# CloudProviderAccessGCPServiceAccountAllOf + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**CreatedDate** | Pointer to **time.Time** | Date and time when this Google Service Account was created. This parameter expresses its value in the ISO 8601 timestamp format in UTC. | [optional] [readonly] +**FeatureUsages** | Pointer to [**[]CloudProviderAccessFeatureUsage**](CloudProviderAccessFeatureUsage.md) | List that contains application features associated with this Google Service Account. | [optional] [readonly] +**GcpServiceAccountForAtlas** | Pointer to **string** | Email address for the Google Service Account created by Atlas. | [optional] +**RoleId** | Pointer to **string** | Unique 24-hexadecimal digit string that identifies the role. | [optional] [readonly] +**Status** | Pointer to **string** | Provision status of the service account. | [optional] [readonly] + +## Methods + +### NewCloudProviderAccessGCPServiceAccountAllOf + +`func NewCloudProviderAccessGCPServiceAccountAllOf() *CloudProviderAccessGCPServiceAccountAllOf` + +NewCloudProviderAccessGCPServiceAccountAllOf instantiates a new CloudProviderAccessGCPServiceAccountAllOf object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewCloudProviderAccessGCPServiceAccountAllOfWithDefaults + +`func NewCloudProviderAccessGCPServiceAccountAllOfWithDefaults() *CloudProviderAccessGCPServiceAccountAllOf` + +NewCloudProviderAccessGCPServiceAccountAllOfWithDefaults instantiates a new CloudProviderAccessGCPServiceAccountAllOf object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetCreatedDate + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetCreatedDate() time.Time` + +GetCreatedDate returns the CreatedDate field if non-nil, zero value otherwise. + +### GetCreatedDateOk + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetCreatedDateOk() (*time.Time, bool)` + +GetCreatedDateOk returns a tuple with the CreatedDate field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCreatedDate + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) SetCreatedDate(v time.Time)` + +SetCreatedDate sets CreatedDate field to given value. + +### HasCreatedDate + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) HasCreatedDate() bool` + +HasCreatedDate returns a boolean if a field has been set. +### GetFeatureUsages + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetFeatureUsages() []CloudProviderAccessFeatureUsage` + +GetFeatureUsages returns the FeatureUsages field if non-nil, zero value otherwise. + +### GetFeatureUsagesOk + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetFeatureUsagesOk() (*[]CloudProviderAccessFeatureUsage, bool)` + +GetFeatureUsagesOk returns a tuple with the FeatureUsages field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetFeatureUsages + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) SetFeatureUsages(v []CloudProviderAccessFeatureUsage)` + +SetFeatureUsages sets FeatureUsages field to given value. + +### HasFeatureUsages + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) HasFeatureUsages() bool` + +HasFeatureUsages returns a boolean if a field has been set. +### GetGcpServiceAccountForAtlas + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetGcpServiceAccountForAtlas() string` + +GetGcpServiceAccountForAtlas returns the GcpServiceAccountForAtlas field if non-nil, zero value otherwise. + +### GetGcpServiceAccountForAtlasOk + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetGcpServiceAccountForAtlasOk() (*string, bool)` + +GetGcpServiceAccountForAtlasOk returns a tuple with the GcpServiceAccountForAtlas field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetGcpServiceAccountForAtlas + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) SetGcpServiceAccountForAtlas(v string)` + +SetGcpServiceAccountForAtlas sets GcpServiceAccountForAtlas field to given value. + +### HasGcpServiceAccountForAtlas + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) HasGcpServiceAccountForAtlas() bool` + +HasGcpServiceAccountForAtlas returns a boolean if a field has been set. +### GetRoleId + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetRoleId() string` + +GetRoleId returns the RoleId field if non-nil, zero value otherwise. + +### GetRoleIdOk + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetRoleIdOk() (*string, bool)` + +GetRoleIdOk returns a tuple with the RoleId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetRoleId + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) SetRoleId(v string)` + +SetRoleId sets RoleId field to given value. + +### HasRoleId + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) HasRoleId() bool` + +HasRoleId returns a boolean if a field has been set. +### GetStatus + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetStatus() string` + +GetStatus returns the Status field if non-nil, zero value otherwise. + +### GetStatusOk + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) GetStatusOk() (*string, bool)` + +GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetStatus + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) SetStatus(v string)` + +SetStatus sets Status field to given value. + +### HasStatus + +`func (o *CloudProviderAccessGCPServiceAccountAllOf) HasStatus() bool` + +HasStatus returns a boolean if a field has been set. + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/docs/CloudProviderAccessRole.md b/docs/docs/CloudProviderAccessRole.md index 770f47c7..0a5d1a80 100644 --- a/docs/docs/CloudProviderAccessRole.md +++ b/docs/docs/CloudProviderAccessRole.md @@ -18,6 +18,7 @@ Name | Type | Description | Notes **ServicePrincipalId** | Pointer to **string** | UUID string that identifies the Azure Service Principal. | [optional] **TenantId** | Pointer to **string** | UUID String that identifies the Azure Active Directory Tenant ID. | [optional] **GcpServiceAccountForAtlas** | Pointer to **string** | Email address for the Google Service Account created by Atlas. | [optional] +**Status** | Pointer to **string** | Provision status of the service account. | [optional] [readonly] ## Methods @@ -369,6 +370,30 @@ SetGcpServiceAccountForAtlas sets GcpServiceAccountForAtlas field to given value `func (o *CloudProviderAccessRole) HasGcpServiceAccountForAtlas() bool` HasGcpServiceAccountForAtlas returns a boolean if a field has been set. +### GetStatus + +`func (o *CloudProviderAccessRole) GetStatus() string` + +GetStatus returns the Status field if non-nil, zero value otherwise. + +### GetStatusOk + +`func (o *CloudProviderAccessRole) GetStatusOk() (*string, bool)` + +GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetStatus + +`func (o *CloudProviderAccessRole) SetStatus(v string)` + +SetStatus sets Status field to given value. + +### HasStatus + +`func (o *CloudProviderAccessRole) HasStatus() bool` + +HasStatus returns a boolean if a field has been set. [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/docs/docs/CloudProviderAccessRoles.md b/docs/docs/CloudProviderAccessRoles.md index eea6f0db..b04c5aec 100644 --- a/docs/docs/CloudProviderAccessRoles.md +++ b/docs/docs/CloudProviderAccessRoles.md @@ -6,6 +6,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **AwsIamRoles** | Pointer to [**[]CloudProviderAccessAWSIAMRole**](CloudProviderAccessAWSIAMRole.md) | List that contains the Amazon Web Services (AWS) IAM roles registered and authorized with MongoDB Cloud. | [optional] **AzureServicePrincipals** | Pointer to [**[]CloudProviderAccessAzureServicePrincipal**](CloudProviderAccessAzureServicePrincipal.md) | List that contains the Azure Service Principals registered with MongoDB Cloud. | [optional] +**GcpServiceAccounts** | Pointer to [**[]CloudProviderAccessGCPServiceAccount**](CloudProviderAccessGCPServiceAccount.md) | List that contains the Google Service Accounts registered and authorized with MongoDB Cloud. | [optional] ## Methods @@ -74,6 +75,30 @@ SetAzureServicePrincipals sets AzureServicePrincipals field to given value. `func (o *CloudProviderAccessRoles) HasAzureServicePrincipals() bool` HasAzureServicePrincipals returns a boolean if a field has been set. +### GetGcpServiceAccounts + +`func (o *CloudProviderAccessRoles) GetGcpServiceAccounts() []CloudProviderAccessGCPServiceAccount` + +GetGcpServiceAccounts returns the GcpServiceAccounts field if non-nil, zero value otherwise. + +### GetGcpServiceAccountsOk + +`func (o *CloudProviderAccessRoles) GetGcpServiceAccountsOk() (*[]CloudProviderAccessGCPServiceAccount, bool)` + +GetGcpServiceAccountsOk returns a tuple with the GcpServiceAccounts field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetGcpServiceAccounts + +`func (o *CloudProviderAccessRoles) SetGcpServiceAccounts(v []CloudProviderAccessGCPServiceAccount)` + +SetGcpServiceAccounts sets GcpServiceAccounts field to given value. + +### HasGcpServiceAccounts + +`func (o *CloudProviderAccessRoles) HasGcpServiceAccounts() bool` + +HasGcpServiceAccounts returns a boolean if a field has been set. [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/internal/core/version.go b/internal/core/version.go index f690b8a3..05aa746a 100644 --- a/internal/core/version.go +++ b/internal/core/version.go @@ -5,7 +5,7 @@ package core // For more information please see: https://github.com/mongodb/atlas-sdk-go/blob/main/docs/doc_1_concepts.md const ( // SDK release tag version. - Version = "v20250312006.0.0" + Version = "v20250312006.1.0" // Resource Version. - Resource = "20250312" + Resource = "" ) diff --git a/openapi/atlas-api-transformed.yaml b/openapi/atlas-api-transformed.yaml index 17560461..8f953a49 100644 --- a/openapi/atlas-api-transformed.yaml +++ b/openapi/atlas-api-transformed.yaml @@ -3049,6 +3049,66 @@ components: readOnly: true type: string type: object + CloudProviderAccessGCPServiceAccount: + allOf: + - $ref: "#/components/schemas/CloudProviderAccessRole" + - properties: + createdDate: + description: Date and time when this Google Service Account was created. This parameter expresses its value in the ISO 8601 timestamp format in UTC. + format: date-time + readOnly: true + type: string + featureUsages: + description: List that contains application features associated with this Google Service Account. + items: + $ref: "#/components/schemas/CloudProviderAccessFeatureUsage" + readOnly: true + type: array + gcpServiceAccountForAtlas: + description: Email address for the Google Service Account created by Atlas. + pattern: ^mongodb-atlas-[0-9a-z]{16}@p-[0-9a-z]{24}.iam.gserviceaccount.com$ + type: string + roleId: + description: Unique 24-hexadecimal digit string that identifies the role. + example: 32b6e34b3d91647abb20e7b8 + pattern: ^([a-f0-9]{24})$ + readOnly: true + type: string + status: + description: Provision status of the service account. + readOnly: true + type: string + type: object + description: Details that describe the features linked to the GCP Service Account. + required: + - providerName + type: object + properties: + createdDate: + description: Date and time when this Google Service Account was created. This parameter expresses its value in the ISO 8601 timestamp format in UTC. + format: date-time + readOnly: true + type: string + featureUsages: + description: List that contains application features associated with this Google Service Account. + items: + $ref: "#/components/schemas/CloudProviderAccessFeatureUsage" + readOnly: true + type: array + gcpServiceAccountForAtlas: + description: Email address for the Google Service Account created by Atlas. + pattern: ^mongodb-atlas-[0-9a-z]{16}@p-[0-9a-z]{24}.iam.gserviceaccount.com$ + type: string + roleId: + description: Unique 24-hexadecimal digit string that identifies the role. + example: 32b6e34b3d91647abb20e7b8 + pattern: ^([a-f0-9]{24})$ + readOnly: true + type: string + status: + description: Provision status of the service account. + readOnly: true + type: string CloudProviderAccessRole: description: Cloud provider access role. properties: @@ -3122,6 +3182,10 @@ components: description: Email address for the Google Service Account created by Atlas. pattern: ^mongodb-atlas-[0-9a-z]{16}@p-[0-9a-z]{24}.iam.gserviceaccount.com$ type: string + status: + description: Provision status of the service account. + readOnly: true + type: string required: - providerName type: object @@ -3279,6 +3343,11 @@ components: items: $ref: "#/components/schemas/CloudProviderAccessAzureServicePrincipal" type: array + gcpServiceAccounts: + description: List that contains the Google Service Accounts registered and authorized with MongoDB Cloud. + items: + $ref: "#/components/schemas/CloudProviderAccessGCPServiceAccount" + type: array type: object CloudProviderContainer: description: Collection of settings that configures the network container for a virtual private connection on Amazon Web Services. @@ -16313,7 +16382,7 @@ info: termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions title: MongoDB Atlas Administration API version: "2.0" - x-xgen-sha: ba69c7df4e80ba9785768a9ab33e0d2db52dfb1d + x-xgen-sha: 97b466db99c775459df5202e2e73a607e027ab87 openapi: 3.0.1 paths: /api/atlas/v2: @@ -16341,7 +16410,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: | @@ -16412,7 +16481,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: | @@ -16482,7 +16551,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: | @@ -16552,7 +16621,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: | @@ -16622,7 +16691,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: | @@ -16696,7 +16765,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: | @@ -16774,7 +16843,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: | @@ -16858,7 +16927,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: | @@ -16953,7 +17022,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: | @@ -17030,7 +17099,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: | @@ -17109,7 +17178,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: | @@ -17192,7 +17261,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: | @@ -17274,7 +17343,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: | @@ -17361,7 +17430,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: | @@ -17457,7 +17526,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: | @@ -17538,7 +17607,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: | @@ -17625,7 +17694,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: | @@ -17705,7 +17774,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: | @@ -17793,7 +17862,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: | @@ -17880,7 +17949,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: | @@ -17956,7 +18025,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: | @@ -18033,7 +18102,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: | @@ -18118,7 +18187,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: | @@ -18194,7 +18263,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: | @@ -18268,7 +18337,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: | @@ -18346,7 +18415,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: | @@ -18433,7 +18502,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: | @@ -18517,7 +18586,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: | @@ -18605,7 +18674,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: | @@ -18693,7 +18762,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: | @@ -18775,7 +18844,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: | @@ -18857,7 +18926,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: | @@ -18933,7 +19002,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: | @@ -19014,7 +19083,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: | @@ -19100,7 +19169,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: | @@ -19185,7 +19254,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: | @@ -19277,7 +19346,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: | @@ -19378,7 +19447,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: | @@ -19472,7 +19541,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: | @@ -19555,7 +19624,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: | @@ -19640,7 +19709,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: | @@ -19731,7 +19800,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: | @@ -19827,7 +19896,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: | @@ -19903,7 +19972,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: | @@ -19979,7 +20048,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: | @@ -20063,7 +20132,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: | @@ -20154,7 +20223,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: | @@ -20244,7 +20313,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: | @@ -20323,7 +20392,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: | @@ -20401,7 +20470,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: | @@ -20477,7 +20546,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: | @@ -20553,7 +20622,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: | @@ -20633,7 +20702,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: | @@ -20766,7 +20835,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: | @@ -20848,7 +20917,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: | @@ -20959,7 +21028,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: | @@ -21029,7 +21098,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableDataProtectionSettings --help + source: atlas api cloudBackups disableDataProtectionSettings --help - label: Go lang: go source: | @@ -21103,7 +21172,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: | @@ -21188,7 +21257,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: | @@ -21266,7 +21335,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: | @@ -21309,7 +21378,7 @@ paths: -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Cloud-Provider-Access/operation/listCloudProviderAccessRoles post: - description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. + description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. For the GCP provider, if the project folder is not yet provisioned, Atlas will now create the role asynchronously. An intermediate role with status `IN_PROGRESS` will be returned, and the final service account will be provisioned. Once the GCP project is set up, subsequent requests will create the service account synchronously. externalDocs: description: Set Up Access to Cloud Providers url: https://www.mongodb.com/docs/atlas/security/cloud-provider-access/ @@ -21345,7 +21414,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: | @@ -21432,7 +21501,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: | @@ -21514,7 +21583,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: | @@ -21604,7 +21673,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: | @@ -21696,7 +21765,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: | @@ -21866,7 +21935,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: | @@ -21962,7 +22031,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: | @@ -22048,7 +22117,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: | @@ -22136,7 +22205,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: | @@ -22243,7 +22312,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: | @@ -22329,7 +22398,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: | @@ -22414,7 +22483,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api autoScalingConfiguration --help + source: atlas api clusters autoScalingConfiguration --help - label: Go lang: go source: | @@ -22496,7 +22565,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: | @@ -22583,7 +22652,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: | @@ -22672,7 +22741,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: | @@ -22752,7 +22821,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: | @@ -22842,7 +22911,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: | @@ -22932,7 +23001,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: | @@ -23018,7 +23087,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: | @@ -23097,7 +23166,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: | @@ -23173,7 +23242,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: | @@ -23264,7 +23333,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: | @@ -23350,7 +23419,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: | @@ -23438,7 +23507,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: | @@ -23529,7 +23598,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: | @@ -23616,7 +23685,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: | @@ -23708,7 +23777,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: | @@ -23794,7 +23863,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: | @@ -23881,7 +23950,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: | @@ -23960,7 +24029,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: | @@ -24055,7 +24124,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: | @@ -24157,7 +24226,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: | @@ -24248,7 +24317,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: | @@ -24342,7 +24411,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: | @@ -24429,7 +24498,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: | @@ -24523,7 +24592,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: | @@ -24605,7 +24674,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: | @@ -24694,7 +24763,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: | @@ -24773,7 +24842,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: | @@ -24868,7 +24937,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: | @@ -24967,7 +25036,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: | @@ -25060,7 +25129,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: | @@ -25159,7 +25228,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: | @@ -25261,7 +25330,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: | @@ -25352,7 +25421,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: | @@ -25442,7 +25511,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: | @@ -25543,7 +25612,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: | @@ -25630,7 +25699,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: | @@ -25710,7 +25779,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: | @@ -25799,7 +25868,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: | @@ -25895,7 +25964,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: | @@ -25986,7 +26055,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: | @@ -26144,7 +26213,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: | @@ -26231,7 +26300,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: | @@ -26321,7 +26390,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: | @@ -26412,7 +26481,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: | @@ -26502,7 +26571,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: | @@ -26599,7 +26668,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: | @@ -26713,7 +26782,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: | @@ -26800,7 +26869,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: | @@ -26888,7 +26957,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: | @@ -26979,7 +27048,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: | @@ -27067,7 +27136,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDropIndexes --help + source: atlas api performanceAdvisor listDropIndexes --help - label: Go lang: go source: | @@ -27148,7 +27217,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSchemaAdvice --help + source: atlas api performanceAdvisor listSchemaAdvice --help - label: Go lang: go source: | @@ -27272,7 +27341,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusterSuggestedIndexes --help + source: atlas api performanceAdvisor listClusterSuggestedIndexes --help - label: Go lang: go source: | @@ -27356,7 +27425,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: | @@ -27445,7 +27514,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: | @@ -27573,7 +27642,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getGroupClusterQueryShapeInsightDetails --help + source: atlas api queryShapeInsights getGroupClusterQueryShapeInsightDetails --help - label: Go lang: go source: | @@ -27740,7 +27809,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getGroupClusterQueryShapeInsightSummaries --help + source: atlas api queryShapeInsights getGroupClusterQueryShapeInsightSummaries --help - label: Go lang: go source: | @@ -27815,7 +27884,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: | @@ -27916,7 +27985,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: | @@ -28005,7 +28074,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: | @@ -28105,7 +28174,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: | @@ -28184,7 +28253,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: | @@ -28262,7 +28331,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: | @@ -28354,7 +28423,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: | @@ -28445,7 +28514,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: | @@ -28541,7 +28610,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: | @@ -28631,7 +28700,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: | @@ -28739,7 +28808,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: | @@ -28837,7 +28906,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: | @@ -28936,7 +29005,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: | @@ -29047,7 +29116,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: | @@ -29143,7 +29212,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: | @@ -29239,7 +29308,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: | @@ -29338,7 +29407,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: | @@ -29428,7 +29497,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: | @@ -29520,7 +29589,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: | @@ -29614,7 +29683,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: | @@ -29702,7 +29771,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: | @@ -29791,7 +29860,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: | @@ -29885,7 +29954,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: | @@ -29968,7 +30037,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: | @@ -30055,7 +30124,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api grantMongoDbEmployeeAccess --help + source: atlas api clusters grantMongoDbEmployeeAccess --help - label: Go lang: go source: | @@ -30145,7 +30214,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: | @@ -30228,7 +30297,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api revokeMongoDbEmployeeAccess --help + source: atlas api clusters revokeMongoDbEmployeeAccess --help - label: Go lang: go source: | @@ -30313,7 +30382,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: | @@ -30423,7 +30492,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: | @@ -30513,7 +30582,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: | @@ -30602,7 +30671,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: | @@ -30699,7 +30768,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: | @@ -30777,7 +30846,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: | @@ -30859,7 +30928,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: | @@ -30939,7 +31008,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: | @@ -31023,7 +31092,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: | @@ -31102,7 +31171,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: | @@ -31190,7 +31259,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: | @@ -31267,7 +31336,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: | @@ -31344,7 +31413,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: | @@ -31424,7 +31493,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: | @@ -31506,7 +31575,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: | @@ -31581,7 +31650,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: | @@ -31667,7 +31736,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: | @@ -31755,7 +31824,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: | @@ -31839,7 +31908,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: | @@ -31917,7 +31986,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: | @@ -31997,7 +32066,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: | @@ -32087,7 +32156,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: | @@ -32175,7 +32244,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: | @@ -32265,7 +32334,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: | @@ -32356,7 +32425,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: | @@ -32454,7 +32523,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: | @@ -32559,7 +32628,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: | @@ -32637,7 +32706,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: | @@ -32811,7 +32880,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: | @@ -32913,7 +32982,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: | @@ -33012,7 +33081,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: | @@ -33122,7 +33191,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: | @@ -33207,7 +33276,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: | @@ -33302,7 +33371,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: | @@ -33422,7 +33491,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: | @@ -33535,7 +33604,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: | @@ -33611,7 +33680,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: | @@ -33703,7 +33772,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: | @@ -33786,7 +33855,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: | @@ -33868,7 +33937,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: | @@ -33953,7 +34022,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: | @@ -34040,7 +34109,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: | @@ -34175,7 +34244,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: | @@ -34266,7 +34335,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: | @@ -34341,7 +34410,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFlexClusters --help + source: atlas api flexClusters listFlexClusters --help - label: Go lang: go source: | @@ -34423,7 +34492,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFlexCluster --help + source: atlas api flexClusters createFlexCluster --help - label: Go lang: go source: | @@ -34506,7 +34575,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFlexCluster --help + source: atlas api flexClusters deleteFlexCluster --help - label: Go lang: go source: | @@ -34588,7 +34657,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFlexCluster --help + source: atlas api flexClusters getFlexCluster --help - label: Go lang: go source: | @@ -34675,7 +34744,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFlexCluster --help + source: atlas api flexClusters updateFlexCluster --help - label: Go lang: go source: | @@ -34767,7 +34836,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFlexBackup --help + source: atlas api flexSnapshots downloadFlexBackup --help - label: Go lang: go source: | @@ -34855,7 +34924,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFlexBackupRestoreJobs --help + source: atlas api flexRestoreJobs listFlexBackupRestoreJobs --help - label: Go lang: go source: | @@ -34942,7 +35011,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFlexBackupRestoreJob --help + source: atlas api flexRestoreJobs createFlexBackupRestoreJob --help - label: Go lang: go source: | @@ -35032,7 +35101,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFlexBackupRestoreJob --help + source: atlas api flexRestoreJobs getFlexBackupRestoreJob --help - label: Go lang: go source: | @@ -35114,7 +35183,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFlexBackups --help + source: atlas api flexSnapshots listFlexBackups --help - label: Go lang: go source: | @@ -35201,7 +35270,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFlexBackup --help + source: atlas api flexSnapshots getFlexBackup --help - label: Go lang: go source: | @@ -35284,7 +35353,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeFlexCluster --help + source: atlas api flexClusters upgradeFlexCluster --help - label: Go lang: go source: | @@ -35363,7 +35432,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: | @@ -35459,7 +35528,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: | @@ -35554,7 +35623,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: | @@ -35645,7 +35714,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: | @@ -35720,7 +35789,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: | @@ -35797,7 +35866,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: | @@ -35877,7 +35946,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: | @@ -35967,7 +36036,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: | @@ -36061,7 +36130,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: | @@ -36150,7 +36219,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: | @@ -36230,7 +36299,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: | @@ -36312,7 +36381,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: | @@ -36393,7 +36462,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: | @@ -36473,7 +36542,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: | @@ -36560,7 +36629,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: | @@ -36637,7 +36706,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: | @@ -36719,7 +36788,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: | @@ -36814,7 +36883,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: | @@ -36912,7 +36981,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: | @@ -37018,7 +37087,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: | @@ -37115,7 +37184,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: | @@ -37190,7 +37259,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: | @@ -37261,7 +37330,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: | @@ -37347,7 +37416,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: | @@ -37433,7 +37502,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: | @@ -37506,7 +37575,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: | @@ -37580,7 +37649,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: | @@ -37656,7 +37725,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: | @@ -37730,7 +37799,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: | @@ -37807,7 +37876,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: | @@ -37887,7 +37956,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: | @@ -37957,7 +38026,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: | @@ -38029,7 +38098,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: | @@ -38138,7 +38207,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: | @@ -38221,7 +38290,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: | @@ -38304,7 +38373,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: | @@ -38387,7 +38456,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: | @@ -38467,7 +38536,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: | @@ -38554,7 +38623,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: | @@ -38639,7 +38708,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: | @@ -38722,7 +38791,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: | @@ -38803,7 +38872,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: | @@ -38885,7 +38954,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: | @@ -38974,7 +39043,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: | @@ -39066,7 +39135,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: | @@ -39159,7 +39228,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: | @@ -39240,7 +39309,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: | @@ -39327,7 +39396,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: | @@ -39425,7 +39494,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: | @@ -39514,7 +39583,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: | @@ -39604,7 +39673,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: | @@ -39692,7 +39761,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: | @@ -39788,7 +39857,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: | @@ -39874,7 +39943,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: | @@ -39963,7 +40032,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: | @@ -40062,7 +40131,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: | @@ -40159,7 +40228,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: | @@ -40255,7 +40324,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: | @@ -40337,7 +40406,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: | @@ -40411,7 +40480,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: | @@ -40492,7 +40561,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: | @@ -40589,7 +40658,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: | @@ -40682,7 +40751,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: | @@ -40773,7 +40842,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: | @@ -40863,7 +40932,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: | @@ -40958,7 +41027,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: | @@ -41038,7 +41107,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: | @@ -41123,7 +41192,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: | @@ -41205,7 +41274,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: | @@ -41302,7 +41371,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: | @@ -41381,7 +41450,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: | @@ -41459,7 +41528,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: | @@ -41532,7 +41601,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: | @@ -41612,7 +41681,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: | @@ -41699,7 +41768,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: | @@ -41773,7 +41842,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: | @@ -41860,7 +41929,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: | @@ -41946,7 +42015,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: | @@ -42048,7 +42117,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: | @@ -42129,7 +42198,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: | @@ -42215,7 +42284,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: | @@ -42324,7 +42393,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: | @@ -42428,7 +42497,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: | @@ -42530,7 +42599,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: | @@ -42667,7 +42736,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: | @@ -42793,7 +42862,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: | @@ -42863,7 +42932,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: | @@ -42935,7 +43004,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: | @@ -43015,7 +43084,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: | @@ -43096,7 +43165,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: | @@ -43181,7 +43250,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: | @@ -43267,7 +43336,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: | @@ -43348,7 +43417,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: | @@ -43436,7 +43505,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: | @@ -43528,7 +43597,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: | @@ -43621,7 +43690,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: | @@ -43719,7 +43788,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: | @@ -43807,7 +43876,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: | @@ -43902,7 +43971,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: | @@ -43984,7 +44053,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: | @@ -44072,7 +44141,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: | @@ -44166,7 +44235,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: | @@ -44254,7 +44323,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: | @@ -44347,7 +44416,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: | @@ -44423,7 +44492,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccounts --help + source: atlas api serviceAccounts listProjectServiceAccounts --help - label: Go lang: go source: | @@ -44502,7 +44571,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccount --help + source: atlas api serviceAccounts createProjectServiceAccount --help - label: Go lang: go source: | @@ -44583,7 +44652,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccount --help + source: atlas api serviceAccounts deleteProjectServiceAccount --help - label: Go lang: go source: | @@ -44662,7 +44731,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectServiceAccount --help + source: atlas api serviceAccounts getProjectServiceAccount --help - label: Go lang: go source: | @@ -44748,7 +44817,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectServiceAccount --help + source: atlas api serviceAccounts updateProjectServiceAccount --help - label: Go lang: go source: | @@ -44833,7 +44902,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccountAccessList --help + source: atlas api serviceAccounts listProjectServiceAccountAccessList --help - label: Go lang: go source: | @@ -44928,7 +44997,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccountAccessList --help + source: atlas api serviceAccounts createProjectServiceAccountAccessList --help - label: Go lang: go source: | @@ -45018,7 +45087,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccountAccessListEntry --help + source: atlas api serviceAccounts deleteProjectServiceAccountAccessListEntry --help - label: Go lang: go source: | @@ -45105,7 +45174,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccountSecret --help + source: atlas api serviceAccounts createProjectServiceAccountSecret --help - label: Go lang: go source: | @@ -45191,7 +45260,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccountSecret --help + source: atlas api serviceAccounts deleteProjectServiceAccountSecret --help - label: Go lang: go source: | @@ -45277,7 +45346,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectServiceAccount --help + source: atlas api serviceAccounts addProjectServiceAccount --help - label: Go lang: go source: | @@ -45353,7 +45422,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: | @@ -45429,7 +45498,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: | @@ -45505,7 +45574,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: | @@ -45585,7 +45654,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: | @@ -45665,7 +45734,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: | @@ -45751,7 +45820,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: | @@ -45837,7 +45906,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: | @@ -45941,7 +46010,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: | @@ -46024,7 +46093,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: | @@ -46112,7 +46181,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: | @@ -46200,7 +46269,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: | @@ -46285,7 +46354,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: | @@ -46379,7 +46448,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: | @@ -46472,7 +46541,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: | @@ -46556,7 +46625,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: | @@ -46641,7 +46710,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: | @@ -46731,7 +46800,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api modifyStreamProcessor --help + source: atlas api streams modifyStreamProcessor --help - label: Go lang: go source: | @@ -46815,7 +46884,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: | @@ -46906,7 +46975,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startStreamProcessorWith --help + source: atlas api streams startStreamProcessorWith --help - label: Go lang: go source: | @@ -46990,7 +47059,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: | @@ -47078,7 +47147,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: | @@ -47160,7 +47229,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAccountDetails --help + source: atlas api streams getAccountDetails --help - label: Go lang: go source: | @@ -47233,7 +47302,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getActiveVpcPeeringConnections --help + source: atlas api streams getActiveVpcPeeringConnections --help - label: Go lang: go source: | @@ -47305,7 +47374,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateLinkConnections --help + source: atlas api streams listPrivateLinkConnections --help - label: Go lang: go source: | @@ -47387,7 +47456,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateLinkConnection --help + source: atlas api streams createPrivateLinkConnection --help - label: Go lang: go source: | @@ -47467,7 +47536,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateLinkConnection --help + source: atlas api streams deletePrivateLinkConnection --help - label: Go lang: go source: | @@ -47544,7 +47613,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateLinkConnection --help + source: atlas api streams getPrivateLinkConnection --help - label: Go lang: go source: | @@ -47622,7 +47691,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getVpcPeeringConnections --help + source: atlas api streams getVpcPeeringConnections --help - label: Go lang: go source: | @@ -47696,7 +47765,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteVpcPeeringConnection --help + source: atlas api streams deleteVpcPeeringConnection --help - label: Go lang: go source: | @@ -47777,7 +47846,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acceptVpcPeeringConnection --help + source: atlas api streams acceptVpcPeeringConnection --help - label: Go lang: go source: | @@ -47855,7 +47924,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api rejectVpcPeeringConnection --help + source: atlas api streams rejectVpcPeeringConnection --help - label: Go lang: go source: | @@ -47938,7 +48007,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstanceWithSampleConnections --help + source: atlas api streams createStreamInstanceWithSampleConnections --help - label: Go lang: go source: | @@ -48017,7 +48086,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: | @@ -48100,7 +48169,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: | @@ -48187,7 +48256,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: | @@ -48270,7 +48339,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectTeam --help + source: atlas api teams getProjectTeam --help - label: Go lang: go source: | @@ -48360,7 +48429,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: | @@ -48437,7 +48506,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: | @@ -48518,7 +48587,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: | @@ -48595,7 +48664,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: | @@ -48668,7 +48737,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: | @@ -48747,7 +48816,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: | @@ -48830,7 +48899,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: | @@ -48938,7 +49007,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api mongoDbCloudUsers listProjectUsers --help - label: Go lang: go source: | @@ -49022,7 +49091,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectUser --help + source: atlas api mongoDbCloudUsers addProjectUser --help - label: Go lang: go source: | @@ -49116,7 +49185,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api mongoDbCloudUsers removeProjectUser --help - label: Go lang: go source: | @@ -49202,7 +49271,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectUser --help + source: atlas api mongoDbCloudUsers getProjectUser --help - label: Go lang: go source: | @@ -49287,7 +49356,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: | @@ -49386,7 +49455,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectRole --help + source: atlas api mongoDbCloudUsers addProjectRole --help - label: Go lang: go source: | @@ -49484,7 +49553,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectRole --help + source: atlas api mongoDbCloudUsers removeProjectRole --help - label: Go lang: go source: | @@ -49565,7 +49634,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: | @@ -49650,7 +49719,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: | @@ -49731,7 +49800,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: | @@ -49815,7 +49884,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: | @@ -49898,7 +49967,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: | @@ -49973,7 +50042,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: | @@ -50053,7 +50122,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganization --help + source: atlas api organizations updateOrganization --help - label: Go lang: go source: | @@ -50133,7 +50202,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: | @@ -50212,7 +50281,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: | @@ -50294,7 +50363,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: | @@ -50375,7 +50444,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: | @@ -50463,7 +50532,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: | @@ -50550,7 +50619,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: | @@ -50642,7 +50711,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: | @@ -50734,7 +50803,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: | @@ -50824,7 +50893,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: | @@ -50903,7 +50972,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: | @@ -51004,7 +51073,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCostExplorerQueryProcess --help + source: atlas api invoices getCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -51118,7 +51187,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: | @@ -51209,7 +51278,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: | @@ -51283,7 +51352,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: | @@ -51375,7 +51444,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: | @@ -51468,7 +51537,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: | @@ -51554,7 +51623,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: | @@ -51644,7 +51713,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: | @@ -51732,7 +51801,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: | @@ -51820,7 +51889,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: | @@ -51913,7 +51982,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: | @@ -52036,7 +52105,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: | @@ -52128,7 +52197,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: | @@ -52214,7 +52283,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: | @@ -52302,7 +52371,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: | @@ -52372,7 +52441,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: | @@ -52448,7 +52517,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: | @@ -52518,7 +52587,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: | @@ -52596,7 +52665,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: | @@ -52682,7 +52751,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getResourcesNonCompliant --help + source: atlas api resourcePolicies getResourcesNonCompliant --help - label: Go lang: go source: | @@ -52765,7 +52834,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrgResourcePolicies --help + source: atlas api resourcePolicies listOrgResourcePolicies --help - label: Go lang: go source: | @@ -52852,7 +52921,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrgResourcePolicy --help + source: atlas api resourcePolicies createOrgResourcePolicy --help - label: Go lang: go source: | @@ -52939,7 +53008,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrgResourcePolicy --help + source: atlas api resourcePolicies deleteOrgResourcePolicy --help - label: Go lang: go source: | @@ -53025,7 +53094,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrgResourcePolicy --help + source: atlas api resourcePolicies getOrgResourcePolicy --help - label: Go lang: go source: | @@ -53122,7 +53191,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrgResourcePolicy --help + source: atlas api resourcePolicies updateOrgResourcePolicy --help - label: Go lang: go source: | @@ -53214,7 +53283,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateAtlasResourcePolicy --help + source: atlas api resourcePolicies validateAtlasResourcePolicy --help - label: Go lang: go source: | @@ -53290,7 +53359,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccounts --help + source: atlas api serviceAccounts listServiceAccounts --help - label: Go lang: go source: | @@ -53368,7 +53437,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccount --help + source: atlas api serviceAccounts createServiceAccount --help - label: Go lang: go source: | @@ -53448,7 +53517,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccount --help + source: atlas api serviceAccounts deleteServiceAccount --help - label: Go lang: go source: | @@ -53527,7 +53596,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServiceAccount --help + source: atlas api serviceAccounts getServiceAccount --help - label: Go lang: go source: | @@ -53613,7 +53682,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServiceAccount --help + source: atlas api serviceAccounts updateServiceAccount --help - label: Go lang: go source: | @@ -53698,7 +53767,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountAccessList --help + source: atlas api serviceAccounts listServiceAccountAccessList --help - label: Go lang: go source: | @@ -53793,7 +53862,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountAccessList --help + source: atlas api serviceAccounts createServiceAccountAccessList --help - label: Go lang: go source: | @@ -53883,7 +53952,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountAccessListEntry --help + source: atlas api serviceAccounts deleteServiceAccountAccessListEntry --help - label: Go lang: go source: | @@ -53969,7 +54038,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountProjects --help + source: atlas api serviceAccounts listServiceAccountProjects --help - label: Go lang: go source: | @@ -54056,7 +54125,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountSecret --help + source: atlas api serviceAccounts createServiceAccountSecret --help - label: Go lang: go source: | @@ -54142,7 +54211,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountSecret --help + source: atlas api serviceAccounts deleteServiceAccountSecret --help - label: Go lang: go source: | @@ -54214,7 +54283,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: | @@ -54294,7 +54363,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: | @@ -54376,7 +54445,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: | @@ -54459,7 +54528,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: | @@ -54543,7 +54612,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: | @@ -54624,7 +54693,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: | @@ -54714,7 +54783,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: | @@ -54830,7 +54899,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api mongoDbCloudUsers listTeamUsers --help - label: Go lang: go source: | @@ -54926,7 +54995,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: | @@ -55025,7 +55094,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: | @@ -55121,7 +55190,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToTeam --help + source: atlas api mongoDbCloudUsers addUserToTeam --help - label: Go lang: go source: | @@ -55217,7 +55286,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeUserFromTeam --help + source: atlas api mongoDbCloudUsers removeUserFromTeam --help - label: Go lang: go source: | @@ -55302,7 +55371,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: | @@ -55397,7 +55466,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api mongoDbCloudUsers listOrganizationUsers --help - label: Go lang: go source: | @@ -55480,7 +55549,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationUser --help + source: atlas api mongoDbCloudUsers createOrganizationUser --help - label: Go lang: go source: | @@ -55571,7 +55640,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api mongoDbCloudUsers removeOrganizationUser --help - label: Go lang: go source: | @@ -55657,7 +55726,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationUser --help + source: atlas api mongoDbCloudUsers getOrganizationUser --help - label: Go lang: go source: | @@ -55750,7 +55819,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationUser --help + source: atlas api mongoDbCloudUsers updateOrganizationUser --help - label: Go lang: go source: | @@ -55839,7 +55908,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: | @@ -55940,7 +56009,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addOrganizationRole --help + source: atlas api mongoDbCloudUsers addOrganizationRole --help - label: Go lang: go source: | @@ -56038,7 +56107,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationRole --help + source: atlas api mongoDbCloudUsers removeOrganizationRole --help - label: Go lang: go source: | @@ -56110,7 +56179,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: | @@ -56192,7 +56261,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: | @@ -56279,7 +56348,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: | @@ -56359,7 +56428,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/openapi/atlas-api.yaml b/openapi/atlas-api.yaml index d20fbb6e..121d061c 100644 --- a/openapi/atlas-api.yaml +++ b/openapi/atlas-api.yaml @@ -7793,6 +7793,15 @@ components: pattern: ^([a-f0-9]{24})$ readOnly: true type: string + status: + description: Provision status of the service account. + enum: + - IN_PROGRESS + - COMPLETE + - FAILED + - NOT_INITIATED + readOnly: true + type: string type: object description: Details that describe the features linked to the GCP Service Account. required: @@ -7921,6 +7930,11 @@ components: items: $ref: '#/components/schemas/CloudProviderAccessAzureServicePrincipal' type: array + gcpServiceAccounts: + description: List that contains the Google Service Accounts registered and authorized with MongoDB Cloud. + items: + $ref: '#/components/schemas/CloudProviderAccessGCPServiceAccount' + type: array type: object CloudProviderAzureAutoScaling: description: Range of instance sizes to which your cluster can scale. @@ -39504,7 +39518,7 @@ info: termsOfService: https://www.mongodb.com/mongodb-management-service-terms-and-conditions title: MongoDB Atlas Administration API version: "2.0" - x-xgen-sha: ba69c7df4e80ba9785768a9ab33e0d2db52dfb1d + x-xgen-sha: 97b466db99c775459df5202e2e73a607e027ab87 openapi: 3.0.1 paths: /api/atlas/v2: @@ -39534,7 +39548,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: | @@ -39607,7 +39621,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: | @@ -39679,7 +39693,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: | @@ -39751,7 +39765,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: | @@ -39821,7 +39835,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: | @@ -39896,7 +39910,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: | @@ -39975,7 +39989,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: | @@ -40060,7 +40074,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: | @@ -40147,7 +40161,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: | @@ -40225,7 +40239,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: | @@ -40305,7 +40319,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: | @@ -40389,7 +40403,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: | @@ -40472,7 +40486,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: | @@ -40560,7 +40574,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: | @@ -40663,7 +40677,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: | @@ -40745,7 +40759,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: | @@ -40830,7 +40844,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: | @@ -40911,7 +40925,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: | @@ -41000,7 +41014,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: | @@ -41085,7 +41099,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: | @@ -41161,7 +41175,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: | @@ -41240,7 +41254,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: | @@ -41327,7 +41341,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: | @@ -41405,7 +41419,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: | @@ -41481,7 +41495,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: | @@ -41561,7 +41575,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: | @@ -41650,7 +41664,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: | @@ -41736,7 +41750,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: | @@ -41826,7 +41840,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: | @@ -41916,7 +41930,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: | @@ -42000,7 +42014,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: | @@ -42084,7 +42098,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: | @@ -42162,7 +42176,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: | @@ -42245,7 +42259,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: | @@ -42333,7 +42347,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: | @@ -42420,7 +42434,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: | @@ -42514,7 +42528,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: | @@ -42617,7 +42631,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: | @@ -42713,7 +42727,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: | @@ -42802,7 +42816,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: | @@ -42889,7 +42903,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: | @@ -42982,7 +42996,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: | @@ -43080,7 +43094,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: | @@ -43158,7 +43172,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: | @@ -43236,7 +43250,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: | @@ -43322,7 +43336,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: | @@ -43415,7 +43429,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: | @@ -43507,7 +43521,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: | @@ -43588,7 +43602,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: | @@ -43668,7 +43682,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: | @@ -43746,7 +43760,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: | @@ -43824,7 +43838,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: | @@ -43906,7 +43920,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: | @@ -44041,7 +44055,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: | @@ -44124,7 +44138,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: | @@ -44236,7 +44250,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: | @@ -44308,7 +44322,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api disableDataProtectionSettings --help + source: atlas api cloudBackups disableDataProtectionSettings --help - label: Go lang: go source: | @@ -44384,7 +44398,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: | @@ -44471,7 +44485,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: | @@ -44551,7 +44565,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: | @@ -44594,7 +44608,7 @@ paths: -X GET "https://cloud.mongodb.com/api/atlas/v2/groups/{groupId}/cloudProviderAccess?pretty=true" x-xgen-docs-url: https://mongodb.com/docs/atlas/reference/api-resources-spec/v2/#tag/Cloud-Provider-Access/operation/listCloudProviderAccessRoles post: - description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. + description: Creates one access role for the specified cloud provider. Some MongoDB Cloud features use these cloud provider access roles for authentication. To use this resource, the requesting Service Account or API Key must have the Project Owner role. For the GCP provider, if the project folder is not yet provisioned, Atlas will now create the role asynchronously. An intermediate role with status `IN_PROGRESS` will be returned, and the final service account will be provisioned. Once the GCP project is set up, subsequent requests will create the service account synchronously. externalDocs: description: Set Up Access to Cloud Providers url: https://www.mongodb.com/docs/atlas/security/cloud-provider-access/ @@ -44632,7 +44646,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: | @@ -44725,7 +44739,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: | @@ -44809,7 +44823,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: | @@ -44901,7 +44915,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: | @@ -44995,7 +45009,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: | @@ -45167,7 +45181,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: | @@ -45265,7 +45279,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: | @@ -45353,7 +45367,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: | @@ -45443,7 +45457,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: | @@ -45580,7 +45594,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: | @@ -45671,7 +45685,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: | @@ -45758,7 +45772,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api autoScalingConfiguration --help + source: atlas api clusters autoScalingConfiguration --help - label: Go lang: go source: | @@ -45842,7 +45856,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: | @@ -45930,7 +45944,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: | @@ -46020,7 +46034,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: | @@ -46102,7 +46116,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: | @@ -46194,7 +46208,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: | @@ -46286,7 +46300,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: | @@ -46374,7 +46388,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: | @@ -46454,7 +46468,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: | @@ -46532,7 +46546,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: | @@ -46625,7 +46639,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: | @@ -46713,7 +46727,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: | @@ -46803,7 +46817,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: | @@ -46896,7 +46910,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: | @@ -46985,7 +46999,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: | @@ -47079,7 +47093,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: | @@ -47167,7 +47181,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: | @@ -47256,7 +47270,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: | @@ -47337,7 +47351,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: | @@ -47434,7 +47448,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: | @@ -47538,7 +47552,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: | @@ -47631,7 +47645,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: | @@ -47727,7 +47741,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: | @@ -47816,7 +47830,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: | @@ -47912,7 +47926,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: | @@ -47996,7 +48010,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: | @@ -48087,7 +48101,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: | @@ -48167,7 +48181,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: | @@ -48263,7 +48277,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: | @@ -48363,7 +48377,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: | @@ -48457,7 +48471,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: | @@ -48558,7 +48572,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: | @@ -48662,7 +48676,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: | @@ -48755,7 +48769,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: | @@ -48847,7 +48861,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: | @@ -48950,7 +48964,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: | @@ -49039,7 +49053,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: | @@ -49121,7 +49135,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: | @@ -49212,7 +49226,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: | @@ -49310,7 +49324,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: | @@ -49403,7 +49417,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: | @@ -49563,7 +49577,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: | @@ -49652,7 +49666,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: | @@ -49744,7 +49758,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: | @@ -49837,7 +49851,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: | @@ -49929,7 +49943,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: | @@ -50028,7 +50042,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: | @@ -50143,7 +50157,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: | @@ -50232,7 +50246,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: | @@ -50322,7 +50336,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: | @@ -50415,7 +50429,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: | @@ -50503,7 +50517,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listDropIndexes --help + source: atlas api performanceAdvisor listDropIndexes --help - label: Go lang: go source: | @@ -50584,7 +50598,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listSchemaAdvice --help + source: atlas api performanceAdvisor listSchemaAdvice --help - label: Go lang: go source: | @@ -50708,7 +50722,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listClusterSuggestedIndexes --help + source: atlas api performanceAdvisor listClusterSuggestedIndexes --help - label: Go lang: go source: | @@ -50794,7 +50808,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: | @@ -50885,7 +50899,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: | @@ -51015,7 +51029,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getGroupClusterQueryShapeInsightDetails --help + source: atlas api queryShapeInsights getGroupClusterQueryShapeInsightDetails --help - label: Go lang: go source: | @@ -51203,7 +51217,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getGroupClusterQueryShapeInsightSummaries --help + source: atlas api queryShapeInsights getGroupClusterQueryShapeInsightSummaries --help - label: Go lang: go source: | @@ -51280,7 +51294,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: | @@ -51383,7 +51397,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: | @@ -51474,7 +51488,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: | @@ -51576,7 +51590,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: | @@ -51657,7 +51671,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: | @@ -51737,7 +51751,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: | @@ -51831,7 +51845,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: | @@ -51924,7 +51938,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: | @@ -52022,7 +52036,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: | @@ -52114,7 +52128,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: | @@ -52224,7 +52238,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: | @@ -52324,7 +52338,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: | @@ -52425,7 +52439,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: | @@ -52538,7 +52552,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: | @@ -52636,7 +52650,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: | @@ -52734,7 +52748,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: | @@ -52835,7 +52849,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: | @@ -52927,7 +52941,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: | @@ -53021,7 +53035,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: | @@ -53121,7 +53135,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: | @@ -53211,7 +53225,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: | @@ -53302,7 +53316,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: | @@ -53398,7 +53412,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: | @@ -53483,7 +53497,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: | @@ -53572,7 +53586,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api grantMongoDbEmployeeAccess --help + source: atlas api clusters grantMongoDbEmployeeAccess --help - label: Go lang: go source: | @@ -53664,7 +53678,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: | @@ -53749,7 +53763,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api revokeMongoDbEmployeeAccess --help + source: atlas api clusters revokeMongoDbEmployeeAccess --help - label: Go lang: go source: | @@ -53836,7 +53850,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: | @@ -53952,7 +53966,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: | @@ -54044,7 +54058,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: | @@ -54132,7 +54146,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: | @@ -54231,7 +54245,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: | @@ -54310,7 +54324,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: | @@ -54398,7 +54412,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: | @@ -54480,7 +54494,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: | @@ -54566,7 +54580,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: | @@ -54647,7 +54661,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: | @@ -54737,7 +54751,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: | @@ -54816,7 +54830,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: | @@ -54895,7 +54909,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: | @@ -54977,7 +54991,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: | @@ -55061,7 +55075,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: | @@ -55138,7 +55152,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: | @@ -55226,7 +55240,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: | @@ -55319,7 +55333,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: | @@ -55405,7 +55419,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: | @@ -55485,7 +55499,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: | @@ -55566,7 +55580,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: | @@ -55658,7 +55672,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: | @@ -55748,7 +55762,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: | @@ -55844,7 +55858,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: | @@ -55942,7 +55956,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: | @@ -56046,7 +56060,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: | @@ -56151,7 +56165,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: | @@ -56231,7 +56245,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: | @@ -56407,7 +56421,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: | @@ -56511,7 +56525,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: | @@ -56612,7 +56626,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: | @@ -56724,7 +56738,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: | @@ -56811,7 +56825,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: | @@ -56908,7 +56922,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: | @@ -57030,7 +57044,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: | @@ -57145,7 +57159,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: | @@ -57223,7 +57237,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: | @@ -57317,7 +57331,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: | @@ -57405,7 +57419,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: | @@ -57492,7 +57506,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: | @@ -57582,7 +57596,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: | @@ -57674,7 +57688,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: | @@ -57811,7 +57825,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: | @@ -57904,7 +57918,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: | @@ -57981,7 +57995,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFlexClusters --help + source: atlas api flexClusters listFlexClusters --help - label: Go lang: go source: | @@ -58065,7 +58079,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFlexCluster --help + source: atlas api flexClusters createFlexCluster --help - label: Go lang: go source: | @@ -58150,7 +58164,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteFlexCluster --help + source: atlas api flexClusters deleteFlexCluster --help - label: Go lang: go source: | @@ -58234,7 +58248,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFlexCluster --help + source: atlas api flexClusters getFlexCluster --help - label: Go lang: go source: | @@ -58323,7 +58337,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateFlexCluster --help + source: atlas api flexClusters updateFlexCluster --help - label: Go lang: go source: | @@ -58417,7 +58431,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api downloadFlexBackup --help + source: atlas api flexSnapshots downloadFlexBackup --help - label: Go lang: go source: | @@ -58507,7 +58521,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFlexBackupRestoreJobs --help + source: atlas api flexRestoreJobs listFlexBackupRestoreJobs --help - label: Go lang: go source: | @@ -58596,7 +58610,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createFlexBackupRestoreJob --help + source: atlas api flexRestoreJobs createFlexBackupRestoreJob --help - label: Go lang: go source: | @@ -58688,7 +58702,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFlexBackupRestoreJob --help + source: atlas api flexRestoreJobs getFlexBackupRestoreJob --help - label: Go lang: go source: | @@ -58772,7 +58786,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listFlexBackups --help + source: atlas api flexSnapshots listFlexBackups --help - label: Go lang: go source: | @@ -58860,7 +58874,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getFlexBackup --help + source: atlas api flexSnapshots getFlexBackup --help - label: Go lang: go source: | @@ -58945,7 +58959,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api upgradeFlexCluster --help + source: atlas api flexClusters upgradeFlexCluster --help - label: Go lang: go source: | @@ -59025,7 +59039,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: | @@ -59133,7 +59147,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: | @@ -59240,7 +59254,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: | @@ -59344,7 +59358,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: | @@ -59421,7 +59435,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: | @@ -59511,7 +59525,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: | @@ -59604,7 +59618,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: | @@ -59707,7 +59721,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: | @@ -59814,7 +59828,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: | @@ -59905,7 +59919,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: | @@ -59987,7 +60001,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: | @@ -60071,7 +60085,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: | @@ -60153,7 +60167,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: | @@ -60235,7 +60249,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: | @@ -60323,7 +60337,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: | @@ -60402,7 +60416,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: | @@ -60486,7 +60500,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: | @@ -60598,7 +60612,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: | @@ -60713,7 +60727,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: | @@ -60836,7 +60850,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: | @@ -60935,7 +60949,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: | @@ -61012,7 +61026,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: | @@ -61085,7 +61099,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: | @@ -61173,7 +61187,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: | @@ -61260,7 +61274,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: | @@ -61334,7 +61348,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: | @@ -61410,7 +61424,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: | @@ -61487,7 +61501,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: | @@ -61562,7 +61576,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: | @@ -61640,7 +61654,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: | @@ -61722,7 +61736,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: | @@ -61794,7 +61808,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: | @@ -61868,7 +61882,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: | @@ -61986,7 +62000,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: | @@ -62075,7 +62089,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: | @@ -62160,7 +62174,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: | @@ -62245,7 +62259,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: | @@ -62327,7 +62341,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: | @@ -62416,7 +62430,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: | @@ -62502,7 +62516,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: | @@ -62586,7 +62600,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: | @@ -62668,7 +62682,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: | @@ -62752,7 +62766,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: | @@ -62842,7 +62856,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: | @@ -62936,7 +62950,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: | @@ -63031,7 +63045,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: | @@ -63114,7 +63128,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: | @@ -63203,7 +63217,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: | @@ -63303,7 +63317,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: | @@ -63394,7 +63408,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: | @@ -63486,7 +63500,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: | @@ -63576,7 +63590,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: | @@ -63678,7 +63692,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: | @@ -63770,7 +63784,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: | @@ -63865,7 +63879,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: | @@ -63970,7 +63984,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: | @@ -64073,7 +64087,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: | @@ -64175,7 +64189,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: | @@ -64259,7 +64273,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: | @@ -64335,7 +64349,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: | @@ -64418,7 +64432,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: | @@ -64516,7 +64530,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: | @@ -64610,7 +64624,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: | @@ -64702,7 +64716,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: | @@ -64793,7 +64807,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: | @@ -64889,7 +64903,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: | @@ -64971,7 +64985,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: | @@ -65058,7 +65072,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: | @@ -65142,7 +65156,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: | @@ -65241,7 +65255,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: | @@ -65322,7 +65336,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: | @@ -65402,7 +65416,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: | @@ -65477,7 +65491,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: | @@ -65559,7 +65573,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: | @@ -65672,7 +65686,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: | @@ -65747,7 +65761,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: | @@ -65836,7 +65850,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: | @@ -65924,7 +65938,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: | @@ -66038,7 +66052,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: | @@ -66121,7 +66135,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: | @@ -66208,7 +66222,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: | @@ -66341,7 +66355,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: | @@ -66587,7 +66601,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: | @@ -66691,7 +66705,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: | @@ -66830,7 +66844,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: | @@ -66958,7 +66972,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: | @@ -67030,7 +67044,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: | @@ -67104,7 +67118,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: | @@ -67186,7 +67200,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: | @@ -67269,7 +67283,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: | @@ -67355,7 +67369,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: | @@ -67442,7 +67456,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: | @@ -67525,7 +67539,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: | @@ -67615,7 +67629,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: | @@ -67709,7 +67723,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: | @@ -67804,7 +67818,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: | @@ -67904,7 +67918,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: | @@ -67994,7 +68008,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: | @@ -68090,7 +68104,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: | @@ -68174,7 +68188,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: | @@ -68263,7 +68277,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: | @@ -68359,7 +68373,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: | @@ -68449,7 +68463,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: | @@ -68544,7 +68558,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: | @@ -68622,7 +68636,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccounts --help + source: atlas api serviceAccounts listProjectServiceAccounts --help - label: Go lang: go source: | @@ -68703,7 +68717,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccount --help + source: atlas api serviceAccounts createProjectServiceAccount --help - label: Go lang: go source: | @@ -68786,7 +68800,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccount --help + source: atlas api serviceAccounts deleteProjectServiceAccount --help - label: Go lang: go source: | @@ -68867,7 +68881,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectServiceAccount --help + source: atlas api serviceAccounts getProjectServiceAccount --help - label: Go lang: go source: | @@ -68955,7 +68969,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateProjectServiceAccount --help + source: atlas api serviceAccounts updateProjectServiceAccount --help - label: Go lang: go source: | @@ -69042,7 +69056,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectServiceAccountAccessList --help + source: atlas api serviceAccounts listProjectServiceAccountAccessList --help - label: Go lang: go source: | @@ -69139,7 +69153,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccountAccessList --help + source: atlas api serviceAccounts createProjectServiceAccountAccessList --help - label: Go lang: go source: | @@ -69231,7 +69245,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccountAccessListEntry --help + source: atlas api serviceAccounts deleteProjectServiceAccountAccessListEntry --help - label: Go lang: go source: | @@ -69320,7 +69334,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createProjectServiceAccountSecret --help + source: atlas api serviceAccounts createProjectServiceAccountSecret --help - label: Go lang: go source: | @@ -69408,7 +69422,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteProjectServiceAccountSecret --help + source: atlas api serviceAccounts deleteProjectServiceAccountSecret --help - label: Go lang: go source: | @@ -69496,7 +69510,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectServiceAccount --help + source: atlas api serviceAccounts addProjectServiceAccount --help - label: Go lang: go source: | @@ -69574,7 +69588,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: | @@ -69652,7 +69666,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: | @@ -69730,7 +69744,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: | @@ -69812,7 +69826,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: | @@ -69894,7 +69908,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: | @@ -69981,7 +69995,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: | @@ -70069,7 +70083,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: | @@ -70174,7 +70188,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: | @@ -70259,7 +70273,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: | @@ -70349,7 +70363,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: | @@ -70439,7 +70453,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: | @@ -70525,7 +70539,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: | @@ -70621,7 +70635,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: | @@ -70716,7 +70730,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: | @@ -70802,7 +70816,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: | @@ -70889,7 +70903,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: | @@ -70981,7 +70995,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api modifyStreamProcessor --help + source: atlas api streams modifyStreamProcessor --help - label: Go lang: go source: | @@ -71067,7 +71081,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: | @@ -71160,7 +71174,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api startStreamProcessorWith --help + source: atlas api streams startStreamProcessorWith --help - label: Go lang: go source: | @@ -71246,7 +71260,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: | @@ -71336,7 +71350,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: | @@ -71419,7 +71433,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getAccountDetails --help + source: atlas api streams getAccountDetails --help - label: Go lang: go source: | @@ -71494,7 +71508,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getActiveVpcPeeringConnections --help + source: atlas api streams getActiveVpcPeeringConnections --help - label: Go lang: go source: | @@ -71568,7 +71582,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listPrivateLinkConnections --help + source: atlas api streams listPrivateLinkConnections --help - label: Go lang: go source: | @@ -71652,7 +71666,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createPrivateLinkConnection --help + source: atlas api streams createPrivateLinkConnection --help - label: Go lang: go source: | @@ -71734,7 +71748,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deletePrivateLinkConnection --help + source: atlas api streams deletePrivateLinkConnection --help - label: Go lang: go source: | @@ -71812,7 +71826,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getPrivateLinkConnection --help + source: atlas api streams getPrivateLinkConnection --help - label: Go lang: go source: | @@ -71892,7 +71906,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getVpcPeeringConnections --help + source: atlas api streams getVpcPeeringConnections --help - label: Go lang: go source: | @@ -71967,7 +71981,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteVpcPeeringConnection --help + source: atlas api streams deleteVpcPeeringConnection --help - label: Go lang: go source: | @@ -72049,7 +72063,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api acceptVpcPeeringConnection --help + source: atlas api streams acceptVpcPeeringConnection --help - label: Go lang: go source: | @@ -72128,7 +72142,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api rejectVpcPeeringConnection --help + source: atlas api streams rejectVpcPeeringConnection --help - label: Go lang: go source: | @@ -72213,7 +72227,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createStreamInstanceWithSampleConnections --help + source: atlas api streams createStreamInstanceWithSampleConnections --help - label: Go lang: go source: | @@ -72294,7 +72308,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: | @@ -72379,7 +72393,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: | @@ -72467,7 +72481,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: | @@ -72552,7 +72566,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectTeam --help + source: atlas api teams getProjectTeam --help - label: Go lang: go source: | @@ -72644,7 +72658,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: | @@ -72723,7 +72737,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: | @@ -72806,7 +72820,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: | @@ -72884,7 +72898,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: | @@ -72959,7 +72973,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: | @@ -73040,7 +73054,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: | @@ -73125,7 +73139,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: | @@ -73235,7 +73249,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listProjectUsers --help + source: atlas api mongoDbCloudUsers listProjectUsers --help - label: Go lang: go source: | @@ -73317,7 +73331,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectUser --help + source: atlas api mongoDbCloudUsers addProjectUser --help - label: Go lang: go source: | @@ -73413,7 +73427,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectUser --help + source: atlas api mongoDbCloudUsers removeProjectUser --help - label: Go lang: go source: | @@ -73501,7 +73515,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getProjectUser --help + source: atlas api mongoDbCloudUsers getProjectUser --help - label: Go lang: go source: | @@ -73588,7 +73602,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: | @@ -73689,7 +73703,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addProjectRole --help + source: atlas api mongoDbCloudUsers addProjectRole --help - label: Go lang: go source: | @@ -73789,7 +73803,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeProjectRole --help + source: atlas api mongoDbCloudUsers removeProjectRole --help - label: Go lang: go source: | @@ -73871,7 +73885,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: | @@ -73958,7 +73972,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: | @@ -74041,7 +74055,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: | @@ -74127,7 +74141,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: | @@ -74211,7 +74225,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: | @@ -74288,7 +74302,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: | @@ -74370,7 +74384,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganization --help + source: atlas api organizations updateOrganization --help - label: Go lang: go source: | @@ -74452,7 +74466,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: | @@ -74533,7 +74547,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: | @@ -74617,7 +74631,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: | @@ -74700,7 +74714,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: | @@ -74790,7 +74804,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: | @@ -74879,7 +74893,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: | @@ -74973,7 +74987,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: | @@ -75067,7 +75081,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: | @@ -75159,7 +75173,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: | @@ -75239,7 +75253,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: | @@ -75341,7 +75355,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getCostExplorerQueryProcess --help + source: atlas api invoices getCostExplorerQueryProcess --help - label: Go lang: go source: | @@ -75457,7 +75471,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: | @@ -75550,7 +75564,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: | @@ -75626,7 +75640,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: | @@ -75720,7 +75734,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: | @@ -75815,7 +75829,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: | @@ -75903,7 +75917,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: | @@ -75995,7 +76009,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: | @@ -76085,7 +76099,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: | @@ -76174,7 +76188,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: | @@ -76269,7 +76283,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: | @@ -76409,7 +76423,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: | @@ -76503,7 +76517,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: | @@ -76591,7 +76605,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: | @@ -76680,7 +76694,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: | @@ -76752,7 +76766,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: | @@ -76830,7 +76844,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: | @@ -76901,7 +76915,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: | @@ -76981,7 +76995,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: | @@ -77069,7 +77083,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getResourcesNonCompliant --help + source: atlas api resourcePolicies getResourcesNonCompliant --help - label: Go lang: go source: | @@ -77154,7 +77168,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrgResourcePolicies --help + source: atlas api resourcePolicies listOrgResourcePolicies --help - label: Go lang: go source: | @@ -77243,7 +77257,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrgResourcePolicy --help + source: atlas api resourcePolicies createOrgResourcePolicy --help - label: Go lang: go source: | @@ -77332,7 +77346,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteOrgResourcePolicy --help + source: atlas api resourcePolicies deleteOrgResourcePolicy --help - label: Go lang: go source: | @@ -77420,7 +77434,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrgResourcePolicy --help + source: atlas api resourcePolicies getOrgResourcePolicy --help - label: Go lang: go source: | @@ -77519,7 +77533,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrgResourcePolicy --help + source: atlas api resourcePolicies updateOrgResourcePolicy --help - label: Go lang: go source: | @@ -77613,7 +77627,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api validateAtlasResourcePolicy --help + source: atlas api resourcePolicies validateAtlasResourcePolicy --help - label: Go lang: go source: | @@ -77691,7 +77705,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccounts --help + source: atlas api serviceAccounts listServiceAccounts --help - label: Go lang: go source: | @@ -77771,7 +77785,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccount --help + source: atlas api serviceAccounts createServiceAccount --help - label: Go lang: go source: | @@ -77853,7 +77867,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccount --help + source: atlas api serviceAccounts deleteServiceAccount --help - label: Go lang: go source: | @@ -77934,7 +77948,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getServiceAccount --help + source: atlas api serviceAccounts getServiceAccount --help - label: Go lang: go source: | @@ -78022,7 +78036,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateServiceAccount --help + source: atlas api serviceAccounts updateServiceAccount --help - label: Go lang: go source: | @@ -78109,7 +78123,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountAccessList --help + source: atlas api serviceAccounts listServiceAccountAccessList --help - label: Go lang: go source: | @@ -78206,7 +78220,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountAccessList --help + source: atlas api serviceAccounts createServiceAccountAccessList --help - label: Go lang: go source: | @@ -78298,7 +78312,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountAccessListEntry --help + source: atlas api serviceAccounts deleteServiceAccountAccessListEntry --help - label: Go lang: go source: | @@ -78386,7 +78400,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listServiceAccountProjects --help + source: atlas api serviceAccounts listServiceAccountProjects --help - label: Go lang: go source: | @@ -78475,7 +78489,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createServiceAccountSecret --help + source: atlas api serviceAccounts createServiceAccountSecret --help - label: Go lang: go source: | @@ -78563,7 +78577,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api deleteServiceAccountSecret --help + source: atlas api serviceAccounts deleteServiceAccountSecret --help - label: Go lang: go source: | @@ -78637,7 +78651,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: | @@ -78719,7 +78733,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: | @@ -78803,7 +78817,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: | @@ -78888,7 +78902,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: | @@ -78974,7 +78988,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: | @@ -79057,7 +79071,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: | @@ -79149,7 +79163,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: | @@ -79267,7 +79281,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listTeamUsers --help + source: atlas api mongoDbCloudUsers listTeamUsers --help - label: Go lang: go source: | @@ -79365,7 +79379,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: | @@ -79466,7 +79480,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: | @@ -79564,7 +79578,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addUserToTeam --help + source: atlas api mongoDbCloudUsers addUserToTeam --help - label: Go lang: go source: | @@ -79662,7 +79676,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeUserFromTeam --help + source: atlas api mongoDbCloudUsers removeUserFromTeam --help - label: Go lang: go source: | @@ -79749,7 +79763,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: | @@ -79846,7 +79860,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api listOrganizationUsers --help + source: atlas api mongoDbCloudUsers listOrganizationUsers --help - label: Go lang: go source: | @@ -79931,7 +79945,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api createOrganizationUser --help + source: atlas api mongoDbCloudUsers createOrganizationUser --help - label: Go lang: go source: | @@ -80024,7 +80038,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationUser --help + source: atlas api mongoDbCloudUsers removeOrganizationUser --help - label: Go lang: go source: | @@ -80112,7 +80126,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api getOrganizationUser --help + source: atlas api mongoDbCloudUsers getOrganizationUser --help - label: Go lang: go source: | @@ -80207,7 +80221,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api updateOrganizationUser --help + source: atlas api mongoDbCloudUsers updateOrganizationUser --help - label: Go lang: go source: | @@ -80298,7 +80312,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: | @@ -80401,7 +80415,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api addOrganizationRole --help + source: atlas api mongoDbCloudUsers addOrganizationRole --help - label: Go lang: go source: | @@ -80501,7 +80515,7 @@ paths: x-codeSamples: - label: Atlas CLI lang: cURL - source: atlas api removeOrganizationRole --help + source: atlas api mongoDbCloudUsers removeOrganizationRole --help - label: Go lang: go source: | @@ -80574,7 +80588,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: | @@ -80658,7 +80672,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: | @@ -80747,7 +80761,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: | @@ -80829,7 +80843,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: |